File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
packages/browser-integration-tests/suites/integrations/Breadcrumbs Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types';
44import { sentryTest } from '../../../../../utils/fixtures' ;
55import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers' ;
66
7- sentryTest ( 'captures Breadcrumb for basic GET request' , async ( { getLocalTestPath , page } ) => {
8- const url = await getLocalTestPath ( { testDir : __dirname } ) ;
7+ sentryTest ( 'captures Breadcrumb for basic GET request' , async ( { getLocalTestUrl , page } ) => {
8+ const url = await getLocalTestUrl ( { testDir : __dirname } ) ;
99
1010 await page . route ( '**/foo' , route => {
1111 return route . fulfill ( {
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types';
44import { sentryTest } from '../../../../../utils/fixtures' ;
55import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers' ;
66
7- sentryTest ( 'captures Breadcrumb for POST request' , async ( { getLocalTestPath , page } ) => {
8- const url = await getLocalTestPath ( { testDir : __dirname } ) ;
7+ sentryTest ( 'captures Breadcrumb for POST request' , async ( { getLocalTestUrl , page } ) => {
8+ const url = await getLocalTestUrl ( { testDir : __dirname } ) ;
99
1010 await page . route ( '**/foo' , route => {
1111 return route . fulfill ( {
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types';
44import { sentryTest } from '../../../../../utils/fixtures' ;
55import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers' ;
66
7- sentryTest ( 'captures Breadcrumb for basic GET request' , async ( { getLocalTestPath , page } ) => {
8- const url = await getLocalTestPath ( { testDir : __dirname } ) ;
7+ sentryTest ( 'captures Breadcrumb for basic GET request' , async ( { getLocalTestUrl , page } ) => {
8+ const url = await getLocalTestUrl ( { testDir : __dirname } ) ;
99
1010 await page . route ( '**/foo' , route => {
1111 return route . fulfill ( {
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types';
44import { sentryTest } from '../../../../../utils/fixtures' ;
55import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers' ;
66
7- sentryTest ( 'captures Breadcrumb for POST request' , async ( { getLocalTestPath , page } ) => {
8- const url = await getLocalTestPath ( { testDir : __dirname } ) ;
7+ sentryTest ( 'captures Breadcrumb for POST request' , async ( { getLocalTestUrl , page } ) => {
8+ const url = await getLocalTestUrl ( { testDir : __dirname } ) ;
99
1010 await page . route ( '**/foo' , route => {
1111 return route . fulfill ( {
You can’t perform that action at this time.
0 commit comments