Skip to content

Commit 9f810e7

Browse files
committed
Increate diagnostics test timeouts
1 parent b5638e4 commit 9f810e7

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)),
@@ -209,7 +211,6 @@ suite("DiagnosticsManager Test Suite", async function () {
209211
swiftVersion.isLessThanOrEqual(new Version(6, 0, 999))
210212
) {
211213
this.skip();
212-
return;
213214
}
214215
await swiftConfig.update("diagnosticsStyle", "default");
215216

0 commit comments

Comments
 (0)