Skip to content

Commit

Permalink
Fix experimental/testmode by removing console.log (#64670)
Browse files Browse the repository at this point in the history
This pr removes a console.log that is making testmode tests very noisy.

This relates to an upstream feature request:
microsoft/playwright#27059

Closes NEXT-3139
  • Loading branch information
Ethan-Arrowood committed Apr 17, 2024
1 parent 0aa7829 commit cf4e897
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/next/src/experimental/testmode/playwright/step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export async function step<T>(
let result: Awaited<T>
let reportedError: any
try {
console.log(props.title, props)
await test.step(props.title, async () => {
result = await handler(({ error }) => {
reportedError = error
Expand Down

0 comments on commit cf4e897

Please sign in to comment.