From bea49c1f0cb972687af322212ae0ec4df8aeb48c Mon Sep 17 00:00:00 2001 From: Dominik Jelinek Date: Fri, 19 Jul 2024 13:52:01 +0200 Subject: [PATCH] fix(terminal test): timeout is not respected at Terminal view tests Signed-off-by: Dominik Jelinek --- tests/test-project/src/test/bottomBar/views.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-project/src/test/bottomBar/views.test.ts b/tests/test-project/src/test/bottomBar/views.test.ts index 82f007aac..e74cfc876 100644 --- a/tests/test-project/src/test/bottomBar/views.test.ts +++ b/tests/test-project/src/test/bottomBar/views.test.ts @@ -90,7 +90,7 @@ describe('Output View/Text Views', function () { let terminal: TerminalView; let terminalName = process.platform === 'win32' ? (VSBrowser.instance.version >= '1.53.0' ? 'pwsh' : 'powershell') : 'bash'; - before(async () => { + before(async function () { this.timeout(15_000); terminal = await panel.openTerminalView(); await new Promise((res) => setTimeout(res, 2000));