You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/pageloadWithChildSpanTimeout/test.ts
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,24 @@
1
1
import { expect } from '@playwright/test';
2
-
import type { Event } from '@sentry/types';
3
2
4
3
import { sentryTest } from '../../../../utils/fixtures';
5
-
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
4
+
import {
5
+
envelopeRequestParser,
6
+
shouldSkipTracingTest,
7
+
waitForTransactionRequestOnUrl,
8
+
} from '../../../../utils/helpers';
6
9
7
10
// This tests asserts that the pageload span will finish itself after the child span timeout if it
8
11
// has a child span without adding any additional ones or finishing any of them finishing. All of the child spans that
9
12
// are still running should have the status "cancelled".
10
-
sentryTest('should send a pageload span terminated via child span timeout', async ({ getLocalTestPath, page }) => {
13
+
sentryTest('should send a pageload span terminated via child span timeout', async ({ getLocalTestUrl, page }) => {
0 commit comments