mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Remove trailing ... in log messages
This commit is contained in:
@@ -21,7 +21,7 @@ function runCoreMainProcessTests (callback) {
|
||||
'--test', '--main-process', testPath
|
||||
]
|
||||
|
||||
console.log('Executing core main process tests...'.bold.green)
|
||||
console.log('Executing core main process tests'.bold.green)
|
||||
const cp = childProcess.spawn(executablePath, testArguments, {stdio: 'inherit'})
|
||||
cp.on('error', error => { callback(error) })
|
||||
cp.on('close', exitCode => { callback(null, exitCode) })
|
||||
@@ -34,7 +34,7 @@ function runCoreRenderProcessTests (callback) {
|
||||
'--test', testPath
|
||||
]
|
||||
|
||||
console.log('Executing core render process tests...'.bold.green)
|
||||
console.log('Executing core render process tests'.bold.green)
|
||||
const cp = childProcess.spawn(executablePath, testArguments, {stdio: 'inherit'})
|
||||
cp.on('error', error => { callback(error) })
|
||||
cp.on('close', exitCode => { callback(null, exitCode) })
|
||||
@@ -52,7 +52,7 @@ for (let packageName in CONFIG.appMetadata.packageDependencies) {
|
||||
'--test', packageSpecDirPath
|
||||
]
|
||||
|
||||
console.log(`Executing ${packageName} tests...`.bold.green)
|
||||
console.log(`Executing ${packageName} tests`.bold.green)
|
||||
const cp = childProcess.spawn(executablePath, testArguments)
|
||||
let stderrOutput = ''
|
||||
cp.stderr.on('data', data => stderrOutput += data)
|
||||
|
||||
Reference in New Issue
Block a user