mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #12124 from Snuffleupagus/unittest-browser-name
Include the browser name when printing unit-test results
This commit is contained in:
commit
7ffbda3396
1 changed files with 2 additions and 1 deletions
|
@ -750,7 +750,8 @@ function unitTestPostHandler(req, res) {
|
|||
}
|
||||
var session = getSession(data.browser);
|
||||
session.numRuns++;
|
||||
var message = data.status + " | " + data.description;
|
||||
var message =
|
||||
data.status + " | " + data.description + " | in " + session.name;
|
||||
if (data.status === "TEST-UNEXPECTED-FAIL") {
|
||||
session.numErrors++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue