@@ -44,8 +44,8 @@ test('Captures a pageload transaction', async ({ page }) => {
44
44
'sentry.origin' : 'auto.ui.browser.metrics' ,
45
45
'sentry.op' : 'browser' ,
46
46
} ,
47
- description : 'domContentLoadedEvent' ,
48
- op : 'browser' ,
47
+ description : page . url ( ) ,
48
+ op : 'browser.domContentLoadedEvent ' ,
49
49
parent_span_id : expect . any ( String ) ,
50
50
span_id : expect . any ( String ) ,
51
51
start_timestamp : expect . any ( Number ) ,
@@ -58,8 +58,8 @@ test('Captures a pageload transaction', async ({ page }) => {
58
58
'sentry.origin' : 'auto.ui.browser.metrics' ,
59
59
'sentry.op' : 'browser' ,
60
60
} ,
61
- description : 'connect' ,
62
- op : 'browser' ,
61
+ description : page . url ( ) ,
62
+ op : 'browser.connect ' ,
63
63
parent_span_id : expect . any ( String ) ,
64
64
span_id : expect . any ( String ) ,
65
65
start_timestamp : expect . any ( Number ) ,
@@ -72,8 +72,8 @@ test('Captures a pageload transaction', async ({ page }) => {
72
72
'sentry.origin' : 'auto.ui.browser.metrics' ,
73
73
'sentry.op' : 'browser' ,
74
74
} ,
75
- description : 'request' ,
76
- op : 'browser' ,
75
+ description : page . url ( ) ,
76
+ op : 'browser.request ' ,
77
77
parent_span_id : expect . any ( String ) ,
78
78
span_id : expect . any ( String ) ,
79
79
start_timestamp : expect . any ( Number ) ,
@@ -86,8 +86,8 @@ test('Captures a pageload transaction', async ({ page }) => {
86
86
'sentry.origin' : 'auto.ui.browser.metrics' ,
87
87
'sentry.op' : 'browser' ,
88
88
} ,
89
- description : 'response' ,
90
- op : 'browser' ,
89
+ description : page . url ( ) ,
90
+ op : 'browser.response ' ,
91
91
parent_span_id : expect . any ( String ) ,
92
92
span_id : expect . any ( String ) ,
93
93
start_timestamp : expect . any ( Number ) ,
0 commit comments