Show diagnostics for todo tests. b=388690 r=sayrer

This commit is contained in:
dbaron@dbaron.org 2007-07-18 21:59:26 -07:00
Родитель 7fbc4f9f9c
Коммит d5157eab47
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -108,7 +108,7 @@ SimpleTest.report = function () {
if (test.todo && !test.result) {
todo++;
cls = "test_todo"
msg = "todo - " + test.name;
msg = "todo - " + test.name + " " + test.diag;
} else if (test.result &&!test.todo) {
passed++;
cls = "test_ok";