disable async tests on windows
interprocess communication seems to be broken
This commit is contained in:
parent
5d2ee561a1
commit
feab6b2e3b
|
@ -54,7 +54,7 @@ if (global.enableSyncTests) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// If on node, run the async tests
|
// If on node, run the async tests
|
||||||
if (isNodeProcess) {
|
if (isNodeProcess && process.platform !== 'win32') {
|
||||||
TESTS.AsyncTests = node_require('./async-tests');
|
TESTS.AsyncTests = node_require('./async-tests');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue