Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ sentryTest(

// 2 errors, 1 flush
await reqErrorPromise;
expect(callsToSentry).toEqual(3);
expect(callsToSentry).toBeGreaterThanOrEqual(3);

await page.click('#log');
await page.click('#go-background');

// Switches to session mode and then goes to background
const req1 = await reqPromise1;
const req2 = await reqPromise2;
expect(callsToSentry).toEqual(5);
expect(callsToSentry).toBeGreaterThanOrEqual(5);

const event0 = getReplayEvent(req0);
const content0 = getReplayRecordingContent(req0);
Expand Down