|
1 | 1 | import { join, basename } from "path"; |
2 | 2 | import { dirSync } from "tmp"; |
3 | 3 | import { CancellationTokenSource } from "vscode-jsonrpc"; |
4 | | -import * as messages from "../../../src/query-server/messages"; |
5 | | -import * as qsClient from "../../../src/query-server/query-server-client"; |
6 | | -import * as cli from "../../../src/codeql-cli/cli"; |
7 | | -import { BqrsCellValue } from "../../../src/common/bqrs-cli-types"; |
8 | | -import { describeWithCodeQL } from "../cli"; |
9 | | -import { QueryServerClient } from "../../../src/query-server/query-server-client"; |
| 4 | +import * as messages from "../../../../src/query-server/messages"; |
| 5 | +import * as qsClient from "../../../../src/query-server/query-server-client"; |
| 6 | +import * as cli from "../../../../src/codeql-cli/cli"; |
| 7 | +import { BqrsCellValue } from "../../../../src/common/bqrs-cli-types"; |
| 8 | +import { describeWithCodeQL } from "../../cli"; |
| 9 | +import { QueryServerClient } from "../../../../src/query-server/query-server-client"; |
10 | 10 | import { |
11 | 11 | extLogger, |
12 | 12 | ProgressReporter, |
13 | | -} from "../../../src/common/logging/vscode"; |
14 | | -import { QueryResultType } from "../../../src/query-server/messages"; |
15 | | -import { ensureTestDatabase, getActivatedExtension } from "../global.helper"; |
16 | | -import { createMockApp } from "../../__mocks__/appMock"; |
| 13 | +} from "../../../../src/common/logging/vscode"; |
| 14 | +import { QueryResultType } from "../../../../src/query-server/messages"; |
| 15 | +import { ensureTestDatabase, getActivatedExtension } from "../../global.helper"; |
| 16 | +import { createMockApp } from "../../../__mocks__/appMock"; |
17 | 17 |
|
18 | 18 | const baseDir = join(__dirname, "../../../test/data"); |
19 | 19 |
|
@@ -100,7 +100,7 @@ const nullProgressReporter: ProgressReporter = { |
100 | 100 | }, |
101 | 101 | }; |
102 | 102 |
|
103 | | -describeWithCodeQL()("using the new query server", () => { |
| 103 | +describeWithCodeQL()("using the query server", () => { |
104 | 104 | let qs: qsClient.QueryServerClient; |
105 | 105 | let cliServer: cli.CodeQLCliServer; |
106 | 106 | let db: string; |
|
0 commit comments