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 afa9602 commit 0884499Copy full SHA for 0884499
packages/browser-integration-tests/suites/replay/eventBufferError/test.ts
@@ -8,6 +8,7 @@ import {
8
REPLAY_DEFAULT_FLUSH_MAX_DELAY,
9
shouldSkipReplayTest,
10
waitForReplayRequest,
11
+ getReplayRecordingContent,
12
} from '../../../utils/replayHelpers';
13
14
sentryTest(
@@ -46,6 +47,10 @@ sentryTest(
46
47
if (called > 0) {
48
// eslint-disable-next-line no-console
49
console.log(event);
50
+
51
+ const recordingEvents = getReplayRecordingContent(route.request());
52
+ // eslint-disable-next-line no-console
53
+ console.log(recordingEvents);
54
}
55
56
return route.fulfill({
0 commit comments