We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03fbc88 commit 4acbbe6Copy full SHA for 4acbbe6
test/integration-tests/commands/build.test.ts
@@ -32,7 +32,7 @@ import {
32
33
suite("Build Commands", function () {
34
// Default timeout is a bit too short, give it a little bit more time
35
- this.timeout(30 * 1000);
+ this.timeout(120 * 1000);
36
37
let folderContext: FolderContext;
38
let workspaceContext: WorkspaceContext;
@@ -105,7 +105,9 @@ suite("Build Commands", function () {
105
const result = vscode.commands.executeCommand(Commands.DEBUG);
106
expect(result).to.eventually.be.true;
107
108
- await bpPromise.then(() => continueSession());
+ await bpPromise;
109
+ await continueSession();
110
+
111
vscode.debug.removeBreakpoints(breakpoints);
112
});
113
0 commit comments