Skip to content

Commit 9e38d71

Browse files
authored
Fix typo
"most" -> "must"
1 parent b53d8a0 commit 9e38d71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mutode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class Mutode {
220220

221221
return new Promise((resolve, reject) => {
222222
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'))
223+
if (code !== 0) return reject(new Error('Test suite must exit with code 0 with no mutants for Mutode to continue'))
224224
const diff = +new Date() - start
225225
const timeout = Math.max(Math.ceil(diff / 1000) * 2500, 5000)
226226
console.log(`Took ${(diff / 1000).toFixed(2)} seconds to run full test suite\n`)

0 commit comments

Comments
 (0)