Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extensions/ql-vscode/scripts/find-deadcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function ignoreFile(file: string): boolean {
containsPath(".storybook", file) ||
containsPath(join("src", "stories"), file) ||
pathsEqual(
join("test", "vscode-tests", "jest-runner-installed-extensions.ts"),
join("test", "vscode-tests", "jest-runner-vscode-codeql-cli.ts"),
file,
) ||
basename(file) === "jest.config.ts" ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import baseConfig from "../jest.config.base";

const config: Config = {
...baseConfig,
runner: "<rootDir>/../jest-runner-installed-extensions.ts",
runner: "<rootDir>/../jest-runner-vscode-codeql-cli.ts",
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import baseConfig from "../jest.config.base";

const config: Config = {
...baseConfig,
runner: "<rootDir>/../jest-runner-installed-extensions.ts",
runner: "<rootDir>/../jest-runner-vscode-codeql-cli.ts",
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
// CLI integration tests call into the CLI and execute queries, so these are expected to take a lot longer
// than the default 5 seconds.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import type * as JestRunner from "jest-runner";
import VSCodeTestRunner from "jest-runner-vscode";
import { ensureCli } from "./ensureCli";

export default class JestRunnerVscodeCodeqlCli extends VSCodeTestRunner {
async runTests(
tests: JestRunner.Test[],
watcher: JestRunner.TestWatcher,
onStart: JestRunner.OnTestStart,
onResult: JestRunner.OnTestSuccess,
onFailure: JestRunner.OnTestFailure,
): Promise<void> {
// The CLI integration tests require the CLI to be available. We do not want to install the CLI
// when VS Code is already running because this will not give any feedback to the test runner. Instead,
// we'll download the CLI now and pass the path to the CLI to VS Code.
await ensureCli(true);

return super.runTests(tests, watcher, onStart, onResult, onFailure);
}
}