Skip to content

Commit 9c1ac4d

Browse files
adjust timeouts to resolve Windows test failures (#1856)
1 parent 04fba14 commit 9c1ac4d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/integration-tests/tasks/SwiftTaskProvider.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ suite("SwiftTaskProvider Test Suite", () => {
112112
expect(task?.detail).to.include("swift build --build-tests");
113113
});
114114

115-
tag("large").test("executes", async () => {
115+
tag("medium").test("executes", async () => {
116116
const task = await getBuildAllTask();
117117
assert(task);
118118
const exitPromise = waitForEndTaskProcess(task);
@@ -138,7 +138,7 @@ suite("SwiftTaskProvider Test Suite", () => {
138138
expect(task?.detail).to.include("swift build --show-bin-path");
139139
});
140140

141-
test("executes", async () => {
141+
tag("medium").test("executes", async () => {
142142
const task = await getBuildAllTask();
143143
assert(task);
144144
const exitPromise = waitForEndTaskProcess(task);

test/integration-tests/utilities/testutilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const extensionBootstrapper = (() => {
6868
let restoreSettings: (() => Promise<void>) | undefined;
6969
before("Activate Swift Extension", async function () {
7070
// Allow enough time for the extension to activate
71-
this.timeout(120_000);
71+
this.timeout(180_000);
7272

7373
// Make sure that CodeLLDB is installed for debugging related tests
7474
if (!vscode.extensions.getExtension("vadimcn.vscode-lldb")) {

0 commit comments

Comments
 (0)