wpt: remove new lines from report

This commit is contained in:
Pierre Tachoire
2023-11-29 11:52:55 +01:00
parent 486927c889
commit b9c0d9e20e

View File

@@ -20,7 +20,7 @@ add_completion_callback(function (tests, status) {
const test = tests[i];
log += test.name+"|"+test.format_status();
if (test.message != null) {
log += "|"+test.message;
log += "|"+test.message.replaceAll("\n"," ");
}
log += "\n";