Just include exit code in spec output

This commit is contained in:
Kevin Sawicki 2015-12-09 18:23:50 -08:00
parent e1654ee334
commit 516ff0644c
2 changed files with 1 additions and 2 deletions

View file

@ -5,5 +5,5 @@ app.on('ready', function () {
})
process.on('exit', function (code) {
console.log('Exit event with code: ' + JSON.stringify(code, null, 2))
console.log('Exit event with code: ' + code)
})