mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
import semmle.javascript.frameworks.Testing
|
|
|
|
class MyTest extends Test, CallExpr {
|
|
MyTest() { getCallee().(VarAccess).getName() = "mytest" }
|
|
|
|
override string toString() { result = CallExpr.super.toString() }
|
|
}
|
|
|
|
from Test t
|
|
select t
|