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

@ -59,6 +59,6 @@ describe.skip.appveyor('cli', () => {
) )
} }
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)
}) })
}) })