We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d33bd1 commit 9c3be95Copy full SHA for 9c3be95
__tests__/testWithSpectronJest.spec.js
@@ -2,6 +2,11 @@ jest.setTimeout(100000)
2
3
const runTests = require('./testWithSpectron.helper.js')
4
5
-test('testWithSpectron works with Jest', async () => {
6
- await runTests('jest')
7
-})
+// Spawned server doesn't exit on windows
+// TODO: make this work on windows
+;(process.platform === 'win32' ? test.skip : test)(
8
+ 'testWithSpectron works with Jest',
9
+ async () => {
10
+ await runTests('jest')
11
+ }
12
+)
0 commit comments