Skip to content

Commit 201205c

Browse files
authored
Run watch tests on Linux CI (#396)
1 parent ace2a31 commit 201205c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

test/watch.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import ENV from './helpers/env.js'
99
import read from './helpers/read.js'
1010
import tmp from './helpers/tmp.js'
1111

12-
// XXX: All the tests in this file are skipped on the CI; too flacky there
13-
const testCb = process.env.CI ? test.cb.skip : test.cb
12+
// XXX: All the tests in this file are skipped on the Windows CI; too flacky there
13+
const testCb =
14+
process.env.CI && process.platform === 'win32' ? test.cb.skip : test.cb
1415

1516
testCb('--watch works', (t) => {
1617
let cp

0 commit comments

Comments
 (0)