Skip to content

Commit 3c9e861

Browse files
committed
Increase some timeouts
1 parent 276dc9b commit 3c9e861

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration-tests/WorkspaceContext.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ suite("WorkspaceContext Test Suite", () => {
7474
} finally {
7575
observer?.dispose();
7676
}
77-
}).timeout(60000);
77+
}).timeout(60000 * 2);
7878
});
7979

8080
suite("Tasks", async function () {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ suite("SwiftPluginTaskProvider Test Suite", () => {
5454
const { exitCode, output } = await executeTaskAndWaitForResult(task);
5555
expect(exitCode).to.equal(0);
5656
expect(cleanOutput(output)).to.include("Hello, World!");
57-
}).timeout(10000);
57+
}).timeout(60000);
5858

5959
test("Exit code on failure", async () => {
6060
const task = taskProvider.createSwiftPluginTask(

0 commit comments

Comments
 (0)