Let's see if we're still green without diagnostics!

This commit is contained in:
Ash Wilson
2017-08-03 20:29:01 -04:00
parent 08a7fab4f9
commit 3b57d2a259
2 changed files with 1 additions and 10 deletions

View File

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