diff --git a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/get/test.ts b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/get/test.ts index c836a8e46943..f4e173940bc4 100644 --- a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/get/test.ts +++ b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/get/test.ts @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types'; import { sentryTest } from '../../../../../utils/fixtures'; import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers'; -sentryTest('captures Breadcrumb for basic GET request', async ({ getLocalTestPath, page }) => { - const url = await getLocalTestPath({ testDir: __dirname }); +sentryTest('captures Breadcrumb for basic GET request', async ({ getLocalTestUrl, page }) => { + const url = await getLocalTestUrl({ testDir: __dirname }); await page.route('**/foo', route => { return route.fulfill({ diff --git a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/post/test.ts b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/post/test.ts index 1635ce394ae5..9267c1099bfd 100644 --- a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/post/test.ts +++ b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/fetch/post/test.ts @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types'; import { sentryTest } from '../../../../../utils/fixtures'; import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers'; -sentryTest('captures Breadcrumb for POST request', async ({ getLocalTestPath, page }) => { - const url = await getLocalTestPath({ testDir: __dirname }); +sentryTest('captures Breadcrumb for POST request', async ({ getLocalTestUrl, page }) => { + const url = await getLocalTestUrl({ testDir: __dirname }); await page.route('**/foo', route => { return route.fulfill({ diff --git a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/get/test.ts b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/get/test.ts index dd1be663cbb4..858392b38444 100644 --- a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/get/test.ts +++ b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/get/test.ts @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types'; import { sentryTest } from '../../../../../utils/fixtures'; import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers'; -sentryTest('captures Breadcrumb for basic GET request', async ({ getLocalTestPath, page }) => { - const url = await getLocalTestPath({ testDir: __dirname }); +sentryTest('captures Breadcrumb for basic GET request', async ({ getLocalTestUrl, page }) => { + const url = await getLocalTestUrl({ testDir: __dirname }); await page.route('**/foo', route => { return route.fulfill({ diff --git a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/post/test.ts b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/post/test.ts index 5a53328502c7..8df0e468a12b 100644 --- a/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/post/test.ts +++ b/packages/browser-integration-tests/suites/integrations/Breadcrumbs/xhr/post/test.ts @@ -4,8 +4,8 @@ import type { Event } from '@sentry/types'; import { sentryTest } from '../../../../../utils/fixtures'; import { getFirstSentryEnvelopeRequest } from '../../../../../utils/helpers'; -sentryTest('captures Breadcrumb for POST request', async ({ getLocalTestPath, page }) => { - const url = await getLocalTestPath({ testDir: __dirname }); +sentryTest('captures Breadcrumb for POST request', async ({ getLocalTestUrl, page }) => { + const url = await getLocalTestUrl({ testDir: __dirname }); await page.route('**/foo', route => { return route.fulfill({