Re-enable tests

This commit is contained in:
Winston Liu
2019-05-25 20:50:53 -04:00
parent e9ba8fdc05
commit 7870675ef4
2 changed files with 2 additions and 3 deletions

View File

@@ -201,8 +201,7 @@ function testSuitesForPlatform (platform) {
let suites = []
switch (platform) {
case 'darwin':
// suites = [runCoreMainProcessTests, runCoreRenderProcessTests, runBenchmarkTests].concat(packageTestSuites)
suites = [runCoreRenderProcessTests]
suites = [runCoreMainProcessTests, runCoreRenderProcessTests, runBenchmarkTests].concat(packageTestSuites)
break
case 'win32':
suites = (process.arch === 'x64') ? [runCoreMainProcessTests, runCoreRenderProcessTests] : [runCoreMainProcessTests]

View File

@@ -4,7 +4,7 @@ const season = require('season')
const temp = require('temp').track()
const runAtom = require('./helpers/start-atom')
fdescribe('Smoke Test', () => {
describe('Smoke Test', () => {
// Fails on win32
if (process.platform !== 'darwin') {
return