tests: Fix failing test of exit code

This commit is contained in:
Sébastien Chopin 2018-08-08 18:49:58 +02:00
parent 83700a58da
commit 96feab15d4
2 changed files with 3 additions and 3 deletions

View File

@ -54,11 +54,11 @@ describe.skip.appveyor('cli', () => {
if (timeout === true) { if (timeout === true) {
console.warn( // eslint-disable-line no-console console.warn( // eslint-disable-line no-console
`we were unable to automatically kill the child process with pid: ${ `we were unable to automatically kill the child process with pid: ${
nuxtStart.pid nuxtStart.pid
}` }`
) )
} }
expect(exitCode).toBe(null) expect(exitCode).toBe(undefined)
}) })
}) })

View File

@ -58,6 +58,6 @@ describe.skip.appveyor('cli', () => {
) )
} }
expect(exitCode).toBe(null) expect(exitCode).toBe(undefined)
}) })
}) })