Closed itsfrank closed 7 months ago
Lune provides process.exit(1) to exit with non-0 exit code. But currently, the runner script has no way of telling if the test session failed or not.
process.exit(1)
We should add either a return to frktest.run() or some other way to query the result so that the runner script can use process.exit(1)
frktest.run()
Fixed in bc37d3a604fedd8394ca2732f175183535397438
Lune provides
process.exit(1)
to exit with non-0 exit code. But currently, the runner script has no way of telling if the test session failed or not.We should add either a return to
frktest.run()
or some other way to query the result so that the runner script can useprocess.exit(1)