зеркало из https://github.com/mozilla/pjs.git
bug 379327 - have browser chrome tests print test filename in FAIL lines. r=gavin
This commit is contained in:
Родитель
6a4fcb206d
Коммит
eb99e89da1
|
@ -116,7 +116,12 @@
|
|||
return this.tests.filter(function (t) !t.pass).length;
|
||||
},
|
||||
get log() {
|
||||
return this.tests.map(function (t) t.msg).join("\n");
|
||||
var path = this.path;
|
||||
return this.tests.map(function (t) {
|
||||
if (!t.pass)
|
||||
return t.msg + " - " + path;
|
||||
return t.msg;
|
||||
}).join("\n");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче