Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 016215c

Browse files
richardschneiderdaviddias
authored andcommitted
test: skip diag.spec on windows
1 parent cd85c2e commit 016215c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/diag.spec.js

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ const chai = require('chai')
66
const dirtyChai = require('dirty-chai')
77
const expect = chai.expect
88
chai.use(dirtyChai)
9+
const os = require('os')
10+
11+
if (os.platform() === 'win32') {
12+
describe.skip('.diag', () => {
13+
it('NYI on Windows', () => {})
14+
})
15+
return
16+
}
917

1018
describe('.diag', function () {
1119
this.timeout(50 * 1000)

0 commit comments

Comments
 (0)