Only run render process tests on Windows for the moment

This commit is contained in:
Ash Wilson
2017-08-03 14:20:24 -04:00
parent dedf5193cd
commit 654cb26819

View File

@@ -154,7 +154,8 @@ function testSuitesForPlatform (platform) {
case 'darwin':
return [runCoreMainProcessTests, runCoreRenderProcessTests, runBenchmarkTests].concat(packageTestSuites)
case 'win32':
return (process.arch === 'x64') ? [runCoreMainProcessTests, runCoreRenderProcessTests] : [runCoreMainProcessTests]
// return (process.arch === 'x64') ? [runCoreMainProcessTests, runCoreRenderProcessTests] : [runCoreMainProcessTests]
return (process.arch === 'x64') ? [runCoreRenderProcessTests] : []
case 'linux':
return [runCoreMainProcessTests]
default: