Skip to content

Commit

Permalink
fix(browser): remove redundant test failure logging (#4891)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Jan 11, 2024
1 parent 528bd55 commit 7fd44dc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/browser/src/client/runner.ts
Expand Up @@ -27,9 +27,6 @@ export function createBrowserRunner(

async onAfterRunTask(task: Test) {
await super.onAfterRunTask?.(task)
task.result?.errors?.forEach((error) => {
console.error(error.message)
})

if (this.config.bail && task.result?.state === 'fail') {
const previousFailures = await rpc().getCountOfFailedTests()
Expand Down

0 comments on commit 7fd44dc

Please sign in to comment.