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 024c4ca commit 2bed985Copy full SHA for 2bed985
packages/replay/test/integration/flush.test.ts
@@ -182,7 +182,7 @@ describe('Integration | flush', () => {
182
});
183
184
// Add this to test that segment ID increases
185
- mockAddPerformanceEntries.mockImplementationOnce(() => {
+ mockAddPerformanceEntries.mockImplementationOnce(() =>
186
createPerformanceSpans(
187
replay,
188
createPerformanceEntries([
@@ -211,8 +211,8 @@ describe('Integration | flush', () => {
211
serverTiming: [],
212
} as unknown as PerformanceResourceTiming,
213
]),
214
- );
215
- });
+ ),
+ );
216
// flush #5 @ t=25s - debounced flush calls `flush`
217
// 20s + `flushMinDelay` which is 5 seconds
218
await advanceTimers(DEFAULT_FLUSH_MIN_DELAY);
0 commit comments