Skip to content

Commit

Permalink
fix: replace enqueued with started on test start
Browse files Browse the repository at this point in the history
currently, we cannot get accurate results of which tests are running.
So usning enqueue may be confusing to users
  • Loading branch information
zxch3n committed Jul 3, 2022
1 parent f12e292 commit d287772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ async function runTest(
}

testCaseSet.forEach((testCase) => {
run.enqueued(testCase)
run.started(testCase)
})

let command
Expand Down

0 comments on commit d287772

Please sign in to comment.