We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace2a31 commit 201205cCopy full SHA for 201205c
1 file changed
test/watch.js
@@ -9,8 +9,9 @@ import ENV from './helpers/env.js'
9
import read from './helpers/read.js'
10
import tmp from './helpers/tmp.js'
11
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
+// XXX: All the tests in this file are skipped on the Windows CI; too flacky there
+const testCb =
14
+ process.env.CI && process.platform === 'win32' ? test.cb.skip : test.cb
15
16
testCb('--watch works', (t) => {
17
let cp
0 commit comments