From f16bbad40e733713f3ac4a54e252230dd64aa7d7 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Tue, 14 Nov 2023 12:16:40 +0000 Subject: [PATCH] Fix --- src/__tests__/extensions/replay/sessionrecording.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/__tests__/extensions/replay/sessionrecording.test.ts b/src/__tests__/extensions/replay/sessionrecording.test.ts index 1612c8711..c82747c24 100644 --- a/src/__tests__/extensions/replay/sessionrecording.test.ts +++ b/src/__tests__/extensions/replay/sessionrecording.test.ts @@ -1119,7 +1119,8 @@ describe('SessionRecording', () => { const { sessionStartTimestamp } = sessionManager.checkAndGetSessionAndWindowId(true) // if we have some data in the buffer and the buffer has a session id but then the session id changes - // then the session duration will be negative and we will never flush the buffer + // then the session duration will be negative, and we will never flush the buffer + // this setup isn't quite that but does simulate the behaviour closely enough _emit(createIncrementalSnapshot({ data: { source: 1 }, timestamp: sessionStartTimestamp - 1000 })) expect(sessionRecording['sessionDuration']).toBe(-1000)