Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove debug output
  • Loading branch information
Lms24 committed Jan 16, 2023
commit 4239931dec57ad30190fcc5706745dcfd742b767
6 changes: 0 additions & 6 deletions packages/integration-tests/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ async function getSentryEvents(page: Page, url?: string): Promise<Array<Event>>
*/
export async function getReplaySnapshot(page: Page): Promise<ReplayContainer> {
const replayIntegration = await page.evaluate<{ _replay: ReplayContainer }>('window.Replay');
debugger;
console.log(replayIntegration._replay);
console.log(typeof replayIntegration);
console.log(Object.getPrototypeOf(replayIntegration._replay));
console.log('isenabled', replayIntegration._replay.isEnabled);

return replayIntegration._replay;
}

Expand Down