Skip to content

Commit 5385eef

Browse files
committed
skip without replay
1 parent dec7cc9 commit 5385eef

File tree

1 file changed

+5
-1
lines changed
  • packages/browser-integration-tests/suites/replay/dsc

1 file changed

+5
-1
lines changed

packages/browser-integration-tests/suites/replay/dsc/test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ import type { EventEnvelopeHeaders } from '@sentry/types';
33

44
import { sentryTest } from '../../../utils/fixtures';
55
import { envelopeHeaderRequestParser, getFirstSentryEnvelopeRequest } from '../../../utils/helpers';
6-
import { getReplaySnapshot } from '../../../utils/replayHelpers';
6+
import { getReplaySnapshot, shouldSkipReplayTest } from '../../../utils/replayHelpers';
77

88
sentryTest('should add replay_id to dsc of transactions', async ({ getLocalTestPath, page }) => {
9+
if (shouldSkipReplayTest()) {
10+
sentryTest.skip();
11+
}
12+
913
const url = await getLocalTestPath({ testDir: __dirname });
1014
await page.goto(url);
1115

0 commit comments

Comments
 (0)