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 c1cc55b commit 4c7ffb3Copy full SHA for 4c7ffb3
packages/integration-tests/suites/replay/customEvents/test.ts
@@ -67,9 +67,9 @@ sentryTest(
67
68
sentryTest(
69
'replay recording should contain a click breadcrumb when a button is clicked',
70
- async ({ getLocalTestPath, page, browserName }) => {
71
- // Replay bundles are es6 only and most performance entries are only available in chromium
72
- if ((process.env.PW_BUNDLE && process.env.PW_BUNDLE.startsWith('bundle_es5')) || browserName !== 'chromium') {
+ async ({ getLocalTestPath, page }) => {
+ // Replay bundles are es6 only
+ if (process.env.PW_BUNDLE && process.env.PW_BUNDLE.startsWith('bundle_es5')) {
73
sentryTest.skip();
74
}
75
0 commit comments