Skip to content

Commit a5f92b8

Browse files
committed
fix: lint in #365
1 parent 93e1932 commit a5f92b8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/web-integration/src/playwright/ai-fixture.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ export type PlayWrightAiFixtureType = {
192192
async function waitForNetworkIdle(page: OriginPlaywrightPage, timeout = 20000) {
193193
try {
194194
await page.waitForLoadState('networkidle', { timeout });
195-
} catch (error: any) {
196-
console.warn(`Network idle timeout exceeded: ${error instanceof Error ? error.message : String(error)}`);
195+
} catch (error: any) {
196+
console.warn(
197+
`Network idle timeout exceeded: ${error instanceof Error ? error.message : String(error)}`,
198+
);
197199
}
198200
}

0 commit comments

Comments
 (0)