mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
import semmle.javascript.frameworks.Testing
|
|
|
|
class MyTest extends Test, CallExpr {
|
|
MyTest() { this.getCallee().(VarAccess).getName() = "mytest" }
|
|
}
|
|
|
|
from Test t
|
|
select t
|