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 dec7cc9 commit 5385eefCopy full SHA for 5385eef
packages/browser-integration-tests/suites/replay/dsc/test.ts
@@ -3,9 +3,13 @@ import type { EventEnvelopeHeaders } from '@sentry/types';
3
4
import { sentryTest } from '../../../utils/fixtures';
5
import { envelopeHeaderRequestParser, getFirstSentryEnvelopeRequest } from '../../../utils/helpers';
6
-import { getReplaySnapshot } from '../../../utils/replayHelpers';
+import { getReplaySnapshot, shouldSkipReplayTest } from '../../../utils/replayHelpers';
7
8
sentryTest('should add replay_id to dsc of transactions', async ({ getLocalTestPath, page }) => {
9
+ if (shouldSkipReplayTest()) {
10
+ sentryTest.skip();
11
+ }
12
+
13
const url = await getLocalTestPath({ testDir: __dirname });
14
await page.goto(url);
15
0 commit comments