bug 379327 - have browser chrome tests print test filename in FAIL lines. r=gavin

This commit is contained in:
ted.mielczarek%gmail.com 2007-09-04 15:47:55 +00:00
Родитель 6a4fcb206d
Коммит eb99e89da1
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -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");
}
};