Delete getTestDirectory

This commit is contained in:
Robert
2023-07-21 16:48:35 +01:00
parent 6fbe95a334
commit e620120144

View File

@@ -1,4 +1,4 @@
import { dirname, extname } from "path";
import { extname } from "path";
import * as vscode from "vscode";
import {
TestAdapter,
@@ -41,14 +41,6 @@ export function getActualFile(testPath: string): string {
return getTestOutputFile(testPath, ".actual");
}
/**
* Get the directory containing the specified QL test.
* @param testPath The full path to the test file.
*/
export function getTestDirectory(testPath: string): string {
return dirname(testPath);
}
/**
* Gets the the full path to a particular output file of the specified QL test.
* @param testPath The full path to the QL test.