Skip to content

Commit eaddf76

Browse files
committed
increase wiggle room to avoid flakyness
1 parent dbb8fae commit eaddf76

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ sentryTest(
108108
// But only some have been captured by replay
109109
// We check for <= THROTTLE_LIMIT, as there have been some captured before, which take up some of the throttle limit
110110
expect(performanceSpans2.length).toBeLessThanOrEqual(THROTTLE_LIMIT);
111-
expect(performanceSpans2.length).toBeGreaterThan(THROTTLE_LIMIT - 10);
111+
expect(performanceSpans2.length).toBeGreaterThan(THROTTLE_LIMIT - 50);
112112

113113
expect(breadcrumbs2.filter(({ category }) => category === 'replay.throttled').length).toBe(1);
114114
},

0 commit comments

Comments
 (0)