Removed logs

This commit is contained in:
Darangi 2020-01-23 18:10:36 +01:00
parent 5df052aec2
commit db55725c5f

View File

@ -91,18 +91,6 @@ function runCoreMainProcessTests (callback) {
const testEnv = Object.assign({}, prepareEnv('core-main-process'), {ATOM_GITHUB_INLINE_GIT_EXEC: 'true'})
console.log('--------------------------------')
console.log('Main process test')
console.log('resourcePath')
console.log(resourcePath)
console.log('testPath')
console.log(testPath)
console.log('testEnv')
console.log(testEnv)
console.log('executablePath')
console.log(executablePath)
console.log('--------------------------------')
console.log('Executing core main process tests'.bold.green)
const cp = childProcess.spawn(executablePath, testArguments, {stdio: 'inherit', env: testEnv})
cp.on('error', error => { callback(error) })
@ -117,18 +105,6 @@ function runCoreRenderProcessTests (callback) {
]
const testEnv = prepareEnv('core-render-process')
console.log('--------------------------------')
console.log('Core renderer process test')
console.log('resourcePath')
console.log(resourcePath)
console.log('testPath')
console.log(testPath)
console.log('testEnv')
console.log(testEnv)
console.log('executablePath')
console.log(executablePath)
console.log('--------------------------------')
console.log('Executing core render process tests'.bold.green)
const cp = childProcess.spawn(executablePath, testArguments, {stdio: 'inherit', env: testEnv})
cp.on('error', error => { callback(error) })