Skip to content

Commit 525188c

Browse files
committed
Increase test timeout to workaround overloaded OneBranch runners
Seriously.
1 parent ec52412 commit 525188c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ private async Task WaitForDiagnosticsAsync()
8383
// Wait for PSSA to finish.
8484
for (int i = 0; Diagnostics.Count == 0; i++)
8585
{
86-
if (i >= 30)
86+
if (i >= 120)
8787
{
88-
throw new InvalidDataException("No diagnostics showed up after 20s.");
88+
throw new InvalidDataException("No diagnostics showed up after 2 minutes.");
8989
}
9090

9191
await Task.Delay(1000);

0 commit comments

Comments
 (0)