We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b53d8a0 + 9e38d71 commit a091878Copy full SHA for a091878
src/mutode.js
@@ -220,7 +220,7 @@ class Mutode {
220
221
return new Promise((resolve, reject) => {
222
child.on('exit', code => {
223
- if (code !== 0) return reject(new Error('Test suite most exit with code 0 with no mutants for Mutode to continue'))
+ if (code !== 0) return reject(new Error('Test suite must exit with code 0 with no mutants for Mutode to continue'))
224
const diff = +new Date() - start
225
const timeout = Math.max(Math.ceil(diff / 1000) * 2500, 5000)
226
console.log(`Took ${(diff / 1000).toFixed(2)} seconds to run full test suite\n`)
0 commit comments