From 03f6aac9990cc04063eff83882566d508156c5a6 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Tue, 23 Sep 2025 15:57:13 +0200 Subject: [PATCH] test: skip flaky test --- tests/browser.test.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/browser.test.ts b/tests/browser.test.ts index fd2e392ad..0093a286d 100644 --- a/tests/browser.test.ts +++ b/tests/browser.test.ts @@ -10,7 +10,13 @@ import path from 'node:path'; import {launch} from '../src/browser.js'; describe('browser', () => { - it('cannot launch multiple times with the same profile', async () => { + it('cannot launch multiple times with the same profile', async t => { + if (os.platform() === 'win32' || os.platform() === 'linux') { + t.skip( + 'Flaky on Windows and Ubuntu images in GitHub actions. Not able to reproduce locally (b/446864025)', + ); + return; + } const tmpDir = os.tmpdir(); const folderPath = path.join(tmpDir, `temp-folder-${crypto.randomUUID()}`); const browser1 = await launch({