File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
dev-packages/browser-integration-tests/suites/tracing
request/fetch-standalone-span
trace-lifetime/pageload-meta Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ sentryTest(
62
62
} ) ;
63
63
64
64
expect ( spanEnvelopeItem ) . toEqual ( {
65
- data : {
65
+ data : expect . objectContaining ( {
66
66
'http.method' : 'GET' ,
67
67
'http.response.status_code' : 200 ,
68
68
'http.response_content_length' : expect . any ( Number ) ,
@@ -74,7 +74,7 @@ sentryTest(
74
74
'server.address' : 'example.com' ,
75
75
type : 'fetch' ,
76
76
url : 'http://example.com/0' ,
77
- } ,
77
+ } ) ,
78
78
description : 'GET http://example.com/0' ,
79
79
op : 'http.client' ,
80
80
origin : 'auto.http.browser' ,
Original file line number Diff line number Diff line change 1
1
import { expect } from '@playwright/test' ;
2
- import { SpanEnvelope } from '@sentry/types' ;
2
+ import type { SpanEnvelope } from '@sentry/types' ;
3
3
import { sentryTest } from '../../../../utils/fixtures' ;
4
4
import type { EventAndTraceHeader } from '../../../../utils/helpers' ;
5
5
import {
You can’t perform that action at this time.
0 commit comments