Skip to content

Commit 74c9a06

Browse files
committed
Removed flow test from Nest framework test suite
1 parent 8a1987a commit 74c9a06

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

javascript/ql/test/library-tests/frameworks/Nest/global/foo.impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { Foo } from "./foo.interface";
22

33
export class FooImpl extends Foo {
44
fooMethod(x: string) {
5-
sink(x); // $ hasValueFlow=x
5+
sink(x);
66
}
77
}

javascript/ql/test/library-tests/frameworks/Nest/test.ql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import javascript
22
private import semmle.javascript.security.dataflow.ServerSideUrlRedirectCustomizations
3-
private import utils.test.InlineFlowTest
43

54
query Http::RouteHandler routeHandler() { any() }
65

@@ -26,5 +25,3 @@ module TestConfig implements DataFlow::ConfigSig {
2625
exists(DataFlow::CallNode call | call.getCalleeName() = "sink" and node = call.getArgument(0))
2726
}
2827
}
29-
30-
import ValueFlowTest<TestConfig>

0 commit comments

Comments
 (0)