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 9aa2489 commit e8a8d7bCopy full SHA for e8a8d7b
dev-packages/browser-integration-tests/suites/integrations/viewHierarchy/test.ts
@@ -1,9 +1,13 @@
1
import { expect } from '@playwright/test';
2
import type { ViewHierarchyData } from '@sentry/core';
3
import { sentryTest } from '../../../utils/fixtures';
4
-import { getMultipleSentryEnvelopeRequests, envelopeParser } from '../../../utils/helpers';
+import { getMultipleSentryEnvelopeRequests, envelopeParser, shouldSkipTracingTest } from '../../../utils/helpers';
5
6
sentryTest('Captures view hierarchy as attachment', async ({ getLocalTestUrl, page }) => {
7
+ if (shouldSkipTracingTest()) {
8
+ return;
9
+ }
10
+
11
const url = await getLocalTestUrl({ testDir: __dirname });
12
13
const [, events] = await Promise.all([
0 commit comments