@@ -3,7 +3,7 @@ import type { Event } from '@sentry/core';
3
3
import { sentryTest } from '../../../../utils/fixtures' ;
4
4
import { getMultipleSentryEnvelopeRequests , shouldSkipTracingTest } from '../../../../utils/helpers' ;
5
5
6
- sentryTest ( 'should create fetch spans with http timing @firefox ' , async ( { browserName, getLocalTestUrl, page } ) => {
6
+ sentryTest ( 'creates fetch spans with http timing' , async ( { browserName, getLocalTestUrl, page } ) => {
7
7
const supportedBrowsers = [ 'chromium' , 'firefox' ] ;
8
8
9
9
if ( shouldSkipTracingTest ( ) || ! supportedBrowsers . includes ( browserName ) ) {
@@ -40,6 +40,8 @@ sentryTest('should create fetch spans with http timing @firefox', async ({ brows
40
40
trace_id : tracingEvent . contexts ?. trace ?. trace_id ,
41
41
data : expect . objectContaining ( {
42
42
'http.request.redirect_start' : expect . any ( Number ) ,
43
+ 'http.request.redirect_end' : expect . any ( Number ) ,
44
+ 'http.request.worker_start' : expect . any ( Number ) ,
43
45
'http.request.fetch_start' : expect . any ( Number ) ,
44
46
'http.request.domain_lookup_start' : expect . any ( Number ) ,
45
47
'http.request.domain_lookup_end' : expect . any ( Number ) ,
@@ -49,6 +51,7 @@ sentryTest('should create fetch spans with http timing @firefox', async ({ brows
49
51
'http.request.request_start' : expect . any ( Number ) ,
50
52
'http.request.response_start' : expect . any ( Number ) ,
51
53
'http.request.response_end' : expect . any ( Number ) ,
54
+ 'http.request.time_to_first_byte' : expect . any ( Number ) ,
52
55
'network.protocol.version' : expect . any ( String ) ,
53
56
} ) ,
54
57
} ) ,
0 commit comments