We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fbe95a commit e620120Copy full SHA for e620120
1 file changed
extensions/ql-vscode/src/query-testing/test-adapter.ts
@@ -1,4 +1,4 @@
1
-import { dirname, extname } from "path";
+import { extname } from "path";
2
import * as vscode from "vscode";
3
import {
4
TestAdapter,
@@ -41,14 +41,6 @@ export function getActualFile(testPath: string): string {
41
return getTestOutputFile(testPath, ".actual");
42
}
43
44
-/**
45
- * Get the directory containing the specified QL test.
46
- * @param testPath The full path to the test file.
47
- */
48
-export function getTestDirectory(testPath: string): string {
49
- return dirname(testPath);
50
-}
51
-
52
/**
53
* Gets the the full path to a particular output file of the specified QL test.
54
* @param testPath The full path to the QL test.
0 commit comments