1
0
Fork 0

Update bin/runapptests.js

Co-authored-by: Rob Pilling <robpilling@gmail.com>
master
Gordon Williams 2024-05-10 09:25:56 +01:00 committed by GitHub
parent 816313e136
commit b1e7c1b4ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ emu.init({
console.table(testState);
process.exit(testState.reduce((a,c)=>{
return a + ((c.result == "SUCCESS") ? 0 : 1);
return a || ((c.result == "SUCCESS") ? 0 : 1);
}, 0))
});
return p;