wpt: refacto results report

This commit is contained in:
Pierre Tachoire
2023-11-28 17:15:04 +01:00
parent 74b25161a3
commit 486927c889
3 changed files with 265 additions and 12 deletions

View File

@@ -18,9 +18,9 @@ add_completion_callback(function (tests, status) {
var log = "";
for (var i = 0; i < tests.length; i++) {
const test = tests[i];
log += test.name+"\t"+test.format_status()+"\t";
log += test.name+"|"+test.format_status();
if (test.message != null) {
log += test.message;
log += "|"+test.message;
}
log += "\n";