mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:27:35 +00:00
test-js: Include skipped tests in total test count
The current output is a bit strange: Tests: 3 skipped, 979 passed, 979 total This makes more sense to me: Tests: 3 skipped, 979 passed, 982 total
This commit is contained in:
parent
cce673e7b0
commit
03b817b130
1 changed files with 1 additions and 1 deletions
|
@ -567,7 +567,7 @@ void TestRunner::print_test_results() const
|
||||||
printf("%d passed, ", m_counts.tests_passed);
|
printf("%d passed, ", m_counts.tests_passed);
|
||||||
print_modifiers({ CLEAR });
|
print_modifiers({ CLEAR });
|
||||||
}
|
}
|
||||||
printf("%d total\n", m_counts.tests_failed + m_counts.tests_passed);
|
printf("%d total\n", m_counts.tests_failed + m_counts.tests_skipped + m_counts.tests_passed);
|
||||||
|
|
||||||
printf("Files: %d total\n", m_counts.files_total);
|
printf("Files: %d total\n", m_counts.files_total);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue