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 f225a3b commit 61243cdCopy full SHA for 61243cd
dev-packages/browser-integration-tests/suites/integrations/viewHierarchy/test.ts
@@ -4,8 +4,9 @@ import { sentryTest } from '../../../utils/fixtures';
4
import { getMultipleSentryEnvelopeRequests, envelopeParser, shouldSkipTracingTest } from '../../../utils/helpers';
5
6
sentryTest('Captures view hierarchy as attachment', async ({ getLocalTestUrl, page }) => {
7
- if (shouldSkipTracingTest()) {
8
- return;
+ const bundle = process.env.PW_BUNDLE;
+ if (bundle != null && !bundle.includes('esm') && !bundle.includes('cjs')) {
9
+ sentryTest.skip();
10
}
11
12
const url = await getLocalTestUrl({ testDir: __dirname });
0 commit comments