Skip to content

Commit 09c94d3

Browse files
committed
Increate diagnostics test timeouts
1 parent 164907d commit 09c94d3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/integration-tests/DiagnosticsManager.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ suite("DiagnosticsManager Test Suite", async function () {
163163
}
164164
});
165165

166-
suite("Parse diagnostics", async () => {
166+
suite("Parse diagnostics", async function () {
167+
this.timeout(60000);
168+
167169
suite("Parse from task output", async () => {
168170
const expectedWarningDiagnostic = new vscode.Diagnostic(
169171
new vscode.Range(new vscode.Position(1, 8), new vscode.Position(1, 8)),
@@ -226,7 +228,6 @@ suite("DiagnosticsManager Test Suite", async function () {
226228
swiftVersion.isLessThanOrEqual(new Version(6, 0, 999))
227229
) {
228230
this.skip();
229-
return;
230231
}
231232
await swiftConfig.update("diagnosticsStyle", "default");
232233

0 commit comments

Comments
 (0)