Skip to content

Commit 889ddb3

Browse files
authored
fix: wrong output for skipped tests
1 parent f28d314 commit 889ddb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/command/run-workers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = async function (workerCount, selectedRuns, options) {
4848

4949
workers.on(event.test.skipped, (test) => {
5050
skippedTestArr.push(test);
51-
output.test.passed(test);
51+
output.test.skipped(test);
5252
});
5353

5454
workers.on(event.all.result, () => {

0 commit comments

Comments
 (0)