Skip to content

Commit abf1b4c

Browse files
authored
Increase timeout for Toolchain tests (#1719)
Bump up the timeout for toolchain tests as the codeWorkspace variant may sometimes take longer than 3 seconds to complete.
1 parent 59cf0bd commit abf1b4c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/integration-tests/WorkspaceContext.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,10 @@ suite("WorkspaceContext Test Suite", () => {
205205
});
206206
});
207207

208-
suite("Toolchain", () => {
208+
suite("Toolchain", function () {
209+
// Increase the timeout as this takes several seconds longer for the codeWorkspaceTests variant
210+
this.timeout(60000);
211+
209212
activateExtensionForSuite({
210213
async setup(ctx) {
211214
workspaceContext = ctx;

0 commit comments

Comments
 (0)