File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
test/vscode-tests/cli-integration/packaging Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ import { CompareView } from "./compare/compare-view";
9292import { initializeTelemetry } from "./telemetry" ;
9393import { ProgressCallback , withProgress } from "./progress" ;
9494import { CodeQlStatusBarHandler } from "./status-bar" ;
95- import { getPackagingCommands } from "./packaging" ;
95+ import { getPackagingCommands } from "./packaging/packaging " ;
9696import { HistoryItemLabelProvider } from "./query-history/history-item-label-provider" ;
9797import { EvalLogViewer } from "./query-evaluation-logging" ;
9898import { SummaryLanguageSupport } from "./log-insights/summary-language-support" ;
Original file line number Diff line number Diff line change 1- import { CodeQLCliServer } from "./cli" ;
1+ import { CodeQLCliServer } from ".. /cli" ;
22import {
33 getOnDiskWorkspaceFolders ,
44 showAndLogExceptionWithTelemetry ,
55 showAndLogInformationMessage ,
6- } from "./helpers" ;
6+ } from ".. /helpers" ;
77import { QuickPickItem , window } from "vscode" ;
88import {
99 ProgressCallback ,
1010 UserCancellationException ,
1111 withProgress ,
12- } from "./progress" ;
13- import { extLogger } from "./common" ;
14- import { asError , getErrorStack } from "./pure/helpers-pure" ;
15- import { redactableError } from "./pure/errors" ;
16- import { PACKS_BY_QUERY_LANGUAGE } from "./common/query-language" ;
17- import { PackagingCommands } from "./common/commands" ;
12+ } from ".. /progress" ;
13+ import { extLogger } from ".. /common" ;
14+ import { asError , getErrorStack } from ".. /pure/helpers-pure" ;
15+ import { redactableError } from ".. /pure/errors" ;
16+ import { PACKS_BY_QUERY_LANGUAGE } from ".. /common/query-language" ;
17+ import { PackagingCommands } from ".. /common/commands" ;
1818
1919type PackagingOptions = {
2020 cliServer : CodeQLCliServer ;
Original file line number Diff line number Diff line change 11import { window } from "vscode" ;
22import { join } from "path" ;
33
4- import { CodeQLCliServer } from "../../../src/cli" ;
5- import { getErrorMessage } from "../../../src/pure/helpers-pure" ;
4+ import { CodeQLCliServer } from "../../../../ src/cli" ;
5+ import { getErrorMessage } from "../../../../ src/pure/helpers-pure" ;
66
7- import * as helpers from "../../../src/helpers" ;
7+ import * as helpers from "../../../../ src/helpers" ;
88import {
99 handleDownloadPacks ,
1010 handleInstallPackDependencies ,
11- } from "../../../src/packaging" ;
12- import { mockedQuickPickItem } from "../utils/mocking.helpers" ;
13- import { getActivatedExtension } from "../global.helper" ;
11+ } from "../../../../ src/packaging /packaging" ;
12+ import { mockedQuickPickItem } from "../../ utils/mocking.helpers" ;
13+ import { getActivatedExtension } from "../../ global.helper" ;
1414
1515describe ( "Packaging commands" , ( ) => {
1616 let cli : CodeQLCliServer ;
You can’t perform that action at this time.
0 commit comments