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 a3881e6 commit 7e0c871Copy full SHA for 7e0c871
packages/browser-integration-tests/suites/replay/bufferMode/test.ts
@@ -94,15 +94,15 @@ sentryTest(
94
95
// 2 errors, 1 flush
96
await reqErrorPromise;
97
- expect(callsToSentry).toEqual(3);
+ expect(callsToSentry).toBeGreaterThanOrEqual(3);
98
99
await page.click('#log');
100
await page.click('#go-background');
101
102
// Switches to session mode and then goes to background
103
const req1 = await reqPromise1;
104
const req2 = await reqPromise2;
105
- expect(callsToSentry).toEqual(5);
+ expect(callsToSentry).toBeGreaterThanOrEqual(5);
106
107
const event0 = getReplayEvent(req0);
108
const content0 = getReplayRecordingContent(req0);
0 commit comments