Skip to content

Commit c5df04a

Browse files
committed
adjust search string
1 parent f5f35ec commit c5df04a

File tree

1 file changed

+2
-2
lines changed
  • packages/integration-tests/suites/replay/captureReplay

1 file changed

+2
-2
lines changed

packages/integration-tests/suites/replay/captureReplay/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sentryTest('captureReplay', async ({ getLocalTestPath, page }) => {
2626
if (!postData) {
2727
return false;
2828
}
29-
return postData.includes('replay_event');
29+
return postData.includes('{"type":"replay_event"}');
3030
});
3131

3232
await page.goto(url);
@@ -37,7 +37,7 @@ sentryTest('captureReplay', async ({ getLocalTestPath, page }) => {
3737
if (!postData) {
3838
return false;
3939
}
40-
return postData.includes('replay_event');
40+
return postData.includes('{"type":"replay_event"}');
4141
});
4242

4343
await page.click('button');

0 commit comments

Comments
 (0)