We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8fb30c commit 74fa209Copy full SHA for 74fa209
tests/browser.test.ts
@@ -10,7 +10,13 @@ import path from 'node:path';
10
import {launch} from '../src/browser.js';
11
12
describe('browser', () => {
13
- it('cannot launch multiple times with the same profile', async () => {
+ it('cannot launch multiple times with the same profile', async t => {
14
+ if (os.platform() === 'win32' || os.platform() === 'linux') {
15
+ t.skip(
16
+ 'Flaky on Windows and Ubuntu images in GitHub actions. Not able to reproduce locally (b/446864025)',
17
+ );
18
+ return;
19
+ }
20
const tmpDir = os.tmpdir();
21
const folderPath = path.join(tmpDir, `temp-folder-${crypto.randomUUID()}`);
22
const browser1 = await launch({
0 commit comments