From 56e33bc08248af3da6b5b64cb1072a16db070b12 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:33:58 +0900 Subject: [PATCH] Increase timeout in `test/e2e/__tests__/restart.ts` --- test/e2e/__tests__/restart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/__tests__/restart.ts b/test/e2e/__tests__/restart.ts index 0858017a..907b2d8b 100644 --- a/test/e2e/__tests__/restart.ts +++ b/test/e2e/__tests__/restart.ts @@ -17,7 +17,7 @@ describe('Restart command', () => { assert.equal(languages.getDiagnostics(document.uri).length, 0); - const diagnostics2 = await waitForDiagnostics(document, { timeout: 10000 }); + const diagnostics2 = await waitForDiagnostics(document, { timeout: 20000 }); assert.deepEqual(diagnostics2, diagnostics1); });