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