From 689fbbd96070fd4c61a50b5482d2f84d566e1eb7 Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Wed, 30 Dec 2020 14:15:14 +0100 Subject: [PATCH] Increase timeouts --- test/monaco/monaco.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/monaco/monaco.test.ts b/test/monaco/monaco.test.ts index 612d58c527f..bbdfa989f00 100644 --- a/test/monaco/monaco.test.ts +++ b/test/monaco/monaco.test.ts @@ -18,7 +18,7 @@ type BrowserType = 'chromium' | 'firefox' | 'webkit'; const browserType: BrowserType = process.env.BROWSER as BrowserType || 'chromium'; before(async function () { - this.timeout(5 * 1000); + this.timeout(20 * 1000); console.log(`Starting browser: ${browserType}`); browser = await playwright[browserType].launch({ headless: process.argv.includes('--headless'), @@ -26,12 +26,12 @@ before(async function () { }); after(async function () { - this.timeout(5 * 1000); + this.timeout(20 * 1000); await browser.close(); }); beforeEach(async function () { - this.timeout(5 * 1000); + this.timeout(20 * 1000); page = await browser.newPage({ viewport: { width: 800, -- GitLab