Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion tests/browser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
Loading