File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1313//===----------------------------------------------------------------------===//
1414
1515import * as vscode from "vscode" ;
16- import { Workbench } from "../utilities/command " ;
16+ import { Workbench } from "../utilities/commands " ;
1717
1818/**
1919 * Prompts the user to reload the extension in cases where we are unable to do
Original file line number Diff line number Diff line change 1111// SPDX-License-Identifier: Apache-2.0
1212//
1313//===----------------------------------------------------------------------===//
14- //
14+
1515export enum Workbench {
1616 ACTION_DEBUG_CONTINUE = "workbench.action.debug.continue" ,
1717 ACTION_CLOSEALLEDITORS = "workbench.action.closeAllEditors" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { WorkspaceContext } from "../../src/WorkspaceContext";
1818import { globalWorkspaceContextPromise } from "./extension.test" ;
1919import { testAssetUri } from "../fixtures" ;
2020import { waitForNoRunningTasks } from "../utilities" ;
21- import { Workbench } from "../../src/utilities/command " ;
21+ import { Workbench } from "../../src/utilities/commands " ;
2222
2323suite ( "BackgroundCompilation Test Suite" , ( ) => {
2424 let workspaceContext : WorkspaceContext ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { DiagnosticsManager } from "../../src/DiagnosticsManager";
2323import { FolderContext } from "../../src/FolderContext" ;
2424import { Version } from "../../src/utilities/version" ;
2525import { folderContextPromise , globalWorkspaceContextPromise } from "./extension.test" ;
26- import { Workbench } from "../../src/utilities/command " ;
26+ import { Workbench } from "../../src/utilities/commands " ;
2727
2828const waitForDiagnostics = ( uris : vscode . Uri [ ] , allowEmpty : boolean = true ) =>
2929 new Promise < void > ( res =>
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { FolderContext } from "../../../src/FolderContext";
2323import { WorkspaceContext } from "../../../src/WorkspaceContext" ;
2424import { Commands } from "../../../src/commands" ;
2525import { makeDebugConfigurations } from "../../../src/debugger/launch" ;
26- import { Workbench } from "../../../src/utilities/command " ;
26+ import { Workbench } from "../../../src/utilities/commands " ;
2727import { continueSession , waitForDebugAdapterCommand } from "../../utilities/debug" ;
2828
2929suite ( "Build Commands" , function ( ) {
Original file line number Diff line number Diff line change 1515import * as assert from "assert" ;
1616import * as vscode from "vscode" ;
1717import { CommentCompletionProviders } from "../../../src/editor/CommentCompletion" ;
18- import { Workbench } from "../../../src/utilities/command " ;
18+ import { Workbench } from "../../../src/utilities/commands " ;
1919
2020suite ( "CommentCompletion Test Suite" , ( ) => {
2121 let document : vscode . TextDocument | undefined ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { expect } from "chai";
1515import { mockGlobalObject } from "../../MockUtils" ;
1616import * as vscode from "vscode" ;
1717import { showReloadExtensionNotification } from "../../../src/ui/ReloadExtension" ;
18- import { Workbench } from "../../../src/utilities/command " ;
18+ import { Workbench } from "../../../src/utilities/commands " ;
1919
2020suite ( "showReloadExtensionNotification()" , async function ( ) {
2121 const mockedVSCodeWindow = mockGlobalObject ( vscode , "window" ) ;
Original file line number Diff line number Diff line change 1212//
1313//===----------------------------------------------------------------------===//
1414import * as vscode from "vscode" ;
15- import { Workbench } from "../../src/utilities/command " ;
15+ import { Workbench } from "../../src/utilities/commands " ;
1616import { DebugAdapter } from "../../src/debugger/debugAdapter" ;
1717import { WorkspaceContext } from "../../src/WorkspaceContext" ;
1818
You can’t perform that action at this time.
0 commit comments