We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93e1932 commit a5f92b8Copy full SHA for a5f92b8
packages/web-integration/src/playwright/ai-fixture.ts
@@ -192,7 +192,9 @@ export type PlayWrightAiFixtureType = {
192
async function waitForNetworkIdle(page: OriginPlaywrightPage, timeout = 20000) {
193
try {
194
await page.waitForLoadState('networkidle', { timeout });
195
- } catch (error: any) {
196
- console.warn(`Network idle timeout exceeded: ${error instanceof Error ? error.message : String(error)}`);
+ } catch (error: any) {
+ console.warn(
197
+ `Network idle timeout exceeded: ${error instanceof Error ? error.message : String(error)}`,
198
+ );
199
}
200
0 commit comments