We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f6bbab commit e39804cCopy full SHA for e39804c
tests/test.js
@@ -64,7 +64,5 @@ function exit() {
64
})
65
66
ignored && console.error('⚠️', ignored, 'ignored test' + (ignored === 1 ? '' : 's', '\n'))
67
- !only && success && !ignored
68
- ? console.log('All good')
69
- : process.exit(1) // eslint-disable-line
+ console.log(!only && success && !ignored ? 'All good' : 'Not good')
70
}
0 commit comments