Skip to content

Commit 3151ea2

Browse files
authored
test: disable flaky fixtures test (#1839)
1 parent 31460b1 commit 3151ea2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/fixtures.spec.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
const path = require('path');
1919
const {spawn, execSync} = require('child_process');
20-
const {FFOX, CHROMIUM, WEBKIT, WIN} = require('./utils').testOptions(browserType);
20+
const {FFOX, CHROMIUM, WEBKIT, WIN, LINUX} = require('./utils').testOptions(browserType);
2121

2222
async function testSignal(state, action, exitOnClose) {
2323
const options = Object.assign({}, state.defaultBrowserOptions, {
@@ -123,7 +123,8 @@ describe('Fixtures', function() {
123123
// TODO: ideally, we would expect the SIGKILL on the browser from
124124
// force kill, but that's racy with sending two signals.
125125
});
126-
it.slow()('should kill the browser on SIGINT + SIGTERM', async state => {
126+
// TODO: flaky - https://app.circleci.com/pipelines/github/microsoft/playwright/582/workflows/b49033ce-fe20-4029-b665-13fb331f842e/jobs/579
127+
it.slow().fail(FFOX && LINUX)('should kill the browser on SIGINT + SIGTERM', async state => {
127128
const result = await testSignal(state, child => {
128129
process.kill(child.pid, 'SIGINT');
129130
process.kill(child.pid, 'SIGTERM');

0 commit comments

Comments
 (0)