mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
test-js: Exit with 1 if any test failed
This commit is contained in:
parent
03b817b130
commit
3a72a93b9d
Notes:
sideshowbarker
2024-07-19 01:51:06 +09:00
Author: https://github.com/linusg
Commit: 3a72a93b9d
Pull-request: https://github.com/SerenityOS/serenity/pull/3794
1 changed files with 1 additions and 1 deletions
|
@ -636,5 +636,5 @@ int main(int argc, char** argv)
|
|||
|
||||
vm = nullptr;
|
||||
|
||||
return 0;
|
||||
return TestRunner::the()->counts().tests_failed > 0 ? 1 : 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue