disable async tests on windows

interprocess communication seems to be broken
This commit is contained in:
Yavor Georgiev 2017-10-12 16:57:19 +02:00
parent 5d2ee561a1
commit feab6b2e3b
No known key found for this signature in database
GPG Key ID: 83FC145DA0CCA9C3
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ if (global.enableSyncTests) {
}
// If on node, run the async tests
if (isNodeProcess) {
if (isNodeProcess && process.platform !== 'win32') {
TESTS.AsyncTests = node_require('./async-tests');
}