You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cp.on('close',exitCode=>{callback(null,{exitCode,step: 'core-main-process',testCommand: `You can run the test again using: \n\t ${executablePath}${testArguments.join(' ')}`})})
98
98
}
99
99
100
100
// Build an array of functions, each running tests for a different rendering test
@@ -112,7 +112,7 @@ for (let testFile of testFiles) {
cp.on('close',exitCode=>{callback(null,{exitCode,step: `core-render-process for ${testFile}`})})
115
+
cp.on('close',exitCode=>{callback(null,{exitCode,step: `core-render-process for ${testFile}.`,testCommand: `You can run the test again using: \n\t ${executablePath}${testArguments.join(' ')}`})})
116
116
})
117
117
}
118
118
@@ -173,7 +173,7 @@ for (let packageName in CONFIG.appMetadata.packageDependencies) {
callback(null,{exitCode,step: `package-${packageName}.`,testCommand: `You can run the test again using: \n\t ${executablePath}${testArguments.join(' ')}`})
177
177
})
178
178
})
179
179
}
@@ -186,7 +186,7 @@ function runBenchmarkTests (callback) {
cp.on('close',exitCode=>{callback(null,{exitCode,step: 'core-benchmarks',testCommand: `You can run the test again using: \n\t ${executablePath}${testArguments.join(' ')}`})})
0 commit comments