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
Notes:
sideshowbarker
2024-07-19 01:51:09 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/03b817b1301 Pull-request: https://github.com/SerenityOS/serenity/pull/3794
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);
|
||||
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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue