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 1a3503c commit b8c7188Copy full SHA for b8c7188
dev-packages/browser-integration-tests/suites/public-api/diagnoseSdkConnectivity/test.ts
@@ -3,7 +3,9 @@ import { sentryTest } from '../../../utils/fixtures';
3
import { envelopeRequestParser, shouldSkipTracingTest, waitForTransactionRequest } from '../../../utils/helpers';
4
5
sentryTest('makes a call to sentry.io to diagnose SDK connectivity', async ({ getLocalTestUrl, page }) => {
6
- if (shouldSkipTracingTest()) {
+ const bundle = process.env.PW_BUNDLE as string | undefined;
7
+ if (shouldSkipTracingTest() || !!bundle) {
8
+ // the CDN bundle doesn't export diagnoseSdkConnectivity. So skipping the test for bundles.
9
sentryTest.skip();
10
}
11
0 commit comments