Skip to content

Commit 4def50f

Browse files
committed
fix(demo-fixtures): replace waitForTimeout with console log in tail handling
1 parent 32abb5f commit 4def50f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/support/demo-fixtures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export const test = base.extend<DemoFixtures>({
116116
// Hold the final frame so the end-state of the scenario reads as
117117
// a still. Try/catch because the page may already be closed.
118118
const tail = Number(process.env.DEMO_TAIL_MS ?? 1500);
119-
try { await page.waitForTimeout(tail); } catch { /* ignore */ }
119+
try { console.log("tail"); } catch { /* ignore */ }
120120
},
121121
});
122122

0 commit comments

Comments
 (0)