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 cec0b64Copy full SHA for cec0b64
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') {
15
+ t.skip(
16
+ 'Flaky on Windows image 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