mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-06-22 16:05:56 +02:00
Check for passed tests first in test/integration/jasmine-boot.js
This makes the order of checks consistent with the one in `test/reporter.js` and improves safety because now any status other than passed will be treated as a failure (also if Jasmine adds more statuses later on).
This commit is contained in:
parent
44a63549b0
commit
9c21d7016b
@ -57,11 +57,11 @@ async function runTests(results) {
|
||||
return;
|
||||
}
|
||||
++results.runs;
|
||||
if (result.failedExpectations.length > 0) {
|
||||
if (result.failedExpectations.length === 0) {
|
||||
console.log(`TEST-PASSED | ${result.description}`);
|
||||
} else {
|
||||
++results.failures;
|
||||
console.log(`TEST-UNEXPECTED-FAIL | ${result.description}`);
|
||||
} else {
|
||||
console.log(`TEST-PASSED | ${result.description}`);
|
||||
}
|
||||
},
|
||||
specStarted(result) {},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user