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 e083772 commit 23abc85Copy full SHA for 23abc85
dev-packages/browser-integration-tests/suites/profiling/legacyMode/test.ts
@@ -15,7 +15,12 @@ sentryTest(
15
sentryTest.skip();
16
}
17
18
- const url = await getLocalTestUrl({ testDir: __dirname });
+ if (shouldSkipTracingTest()) {
19
+ // Profiling only works when tracing is enabled
20
+ sentryTest.skip();
21
+ }
22
+
23
+ const url = await getLocalTestUrl({ testDir: __dirname });
24
25
const req = await waitForTransactionRequestOnUrl(page, url);
26
const transactionEvent = properEnvelopeRequestParser<Event>(req, 0);
0 commit comments