Skip to content

Commit 0e41053

Browse files
committed
fix lint issue
1 parent 65a37b0 commit 0e41053

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/e2e/setup/app.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ import type {Page} from '@playwright/test'
1919
async function raceWaiters<T>(build: (signal: AbortSignal) => Promise<T>[]): Promise<T> {
2020
const ctrl = new AbortController()
2121
const promises = build(ctrl.signal)
22-
promises.forEach((promise) => promise.catch(() => {}))
22+
promises.forEach((promise) => {
23+
promise.catch(() => {})
24+
})
2325
try {
2426
return await Promise.race(promises)
2527
} finally {

0 commit comments

Comments
 (0)