Files
vscode-codeql/extensions/ql-vscode/test/vscode-tests/activated-extension/jest.setup.ts
Koen Vlaswinkel 14eb6b4f89 Only download test DB for CLI integration tests
The test database is not required for activated extension tests, so we
only need to download the test database for CLI integration tests.
2023-02-13 11:37:11 +01:00

13 lines
206 B
TypeScript

import {
beforeAllAction,
beforeEachAction,
} from "../jest.activated-extension.setup";
beforeAll(async () => {
await beforeAllAction();
});
beforeEach(async () => {
await beforeEachAction();
});