From b00fa22f94371f6d38d2d23e6e0b32fc7af470f0 Mon Sep 17 00:00:00 2001 From: Brendan Kenny Date: Thu, 15 Apr 2021 01:04:44 -0500 Subject: [PATCH] tests(mac): longer timeout for finding installations (#238) --- test/chrome-launcher-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/chrome-launcher-test.ts b/test/chrome-launcher-test.ts index 65d9be132..b33621679 100644 --- a/test/chrome-launcher-test.ts +++ b/test/chrome-launcher-test.ts @@ -146,7 +146,7 @@ describe('Launcher', () => { const installations = Launcher.getInstallations(); assert.ok(Array.isArray(installations)); assert.ok(installations.length >= 1); - }); + }).timeout(30_000); it('removes --user-data-dir if userDataDir is false', async () => { const spawnStub = await launchChromeWithOpts();