Skip to content
Closed
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
3 changes: 2 additions & 1 deletion tests/library/browsertype-connect.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,9 @@ for (const kind of ['launchServer', 'run-server'] as const) {
await browser.close();
});

test('should ignore page.pause when headed', async ({ connect, startRemoteServer, browserType, channel }) => {
test('should ignore page.pause when headed', async ({ connect, startRemoteServer, browserType, browserName, isMac, channel }) => {
test.skip(channel === 'chromium-headless-shell', 'shell is never headed');
test.fixme(browserName === 'chromium' && isMac, 'Headed remote server is slow to exit on SIGINT on macOS, so startRemoteServer teardown times out.');

const headless = (browserType as any)._playwright._defaultLaunchOptions.headless;
(browserType as any)._playwright._defaultLaunchOptions.headless = false;
Expand Down
Loading