Skip to content

Commit f9eb6f5

Browse files
committed
reduce max timeout
1 parent 433da18 commit f9eb6f5

File tree

1 file changed

+2
-2
lines changed
  • packages/browser-integration-tests/suites/replay/throttleBreadcrumbs

1 file changed

+2
-2
lines changed

packages/browser-integration-tests/suites/replay/throttleBreadcrumbs/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ sentryTest(
8484
await page.waitForFunction('window.__isLoaded()');
8585
await forceFlushReplay();
8686

87-
await waitForFunction(() => collectedBreadcrumbs.length === 1, 10_000, 100);
87+
await waitForFunction(() => collectedBreadcrumbs.length === 1, 6_000, 100);
8888

8989
// All assets have been _loaded_
9090
expect(scriptsLoaded).toBe(COUNT);
@@ -110,7 +110,7 @@ sentryTest(
110110
await page.waitForFunction('window.__isLoaded(2)');
111111
await forceFlushReplay();
112112

113-
await waitForFunction(() => collectedBreadcrumbs.length === 1, 10_000, 100);
113+
await waitForFunction(() => collectedBreadcrumbs.length === 1, 6_000, 100);
114114

115115
// All assets have been _loaded_
116116
expect(scriptsLoaded).toBe(COUNT * 2);

0 commit comments

Comments
 (0)