Skip to content

Commit

Permalink
update an e2e test i missed
Browse files Browse the repository at this point in the history
  • Loading branch information
0Calories committed Aug 29, 2024
1 parent f5955cb commit db010bd
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ test('Captures a pageload transaction', async ({ page }) => {
'sentry.origin': 'auto.ui.browser.metrics',
'sentry.op': 'browser',
},
description: 'domContentLoadedEvent',
op: 'browser',
description: page.url(),
op: 'browser.domContentLoadedEvent',
parent_span_id: expect.any(String),
span_id: expect.any(String),
start_timestamp: expect.any(Number),
Expand All @@ -58,8 +58,8 @@ test('Captures a pageload transaction', async ({ page }) => {
'sentry.origin': 'auto.ui.browser.metrics',
'sentry.op': 'browser',
},
description: 'connect',
op: 'browser',
description: page.url(),
op: 'browser.connect',
parent_span_id: expect.any(String),
span_id: expect.any(String),
start_timestamp: expect.any(Number),
Expand All @@ -72,8 +72,8 @@ test('Captures a pageload transaction', async ({ page }) => {
'sentry.origin': 'auto.ui.browser.metrics',
'sentry.op': 'browser',
},
description: 'request',
op: 'browser',
description: page.url(),
op: 'browser.request',
parent_span_id: expect.any(String),
span_id: expect.any(String),
start_timestamp: expect.any(Number),
Expand All @@ -86,8 +86,8 @@ test('Captures a pageload transaction', async ({ page }) => {
'sentry.origin': 'auto.ui.browser.metrics',
'sentry.op': 'browser',
},
description: 'response',
op: 'browser',
description: page.url(),
op: 'browser.response',
parent_span_id: expect.any(String),
span_id: expect.any(String),
start_timestamp: expect.any(Number),
Expand Down

0 comments on commit db010bd

Please sign in to comment.