We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c800954 commit a781ff3Copy full SHA for a781ff3
packages/overhead-metrics/src/scenarios.ts
@@ -74,7 +74,7 @@ export class BookingAppScenario implements Scenario {
74
await page.click(`.result:nth-child(${i}) [data-select]`);
75
}
76
77
- // Wait for flushing, which we set to 2000ms
78
- await new Promise(resolve => setTimeout(resolve, 2000));
+ // Wait for flushing, which we set to 2000ms - to be safe, we add 1s on top
+ await new Promise(resolve => setTimeout(resolve, 3000));
79
80
0 commit comments