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(
6262 } ) ;
6363
6464 expect ( spanEnvelopeItem ) . toEqual ( {
65- data : {
65+ data : expect . objectContaining ( {
6666 'http.method' : 'GET' ,
6767 'http.response.status_code' : 200 ,
6868 'http.response_content_length' : expect . any ( Number ) ,
@@ -74,7 +74,7 @@ sentryTest(
7474 'server.address' : 'example.com' ,
7575 type : 'fetch' ,
7676 url : 'http://example.com/0' ,
77- } ,
77+ } ) ,
7878 description : 'GET http://example.com/0' ,
7979 op : 'http.client' ,
8080 origin : 'auto.http.browser' ,
Original file line number Diff line number Diff line change 11import { expect } from '@playwright/test' ;
2- import { SpanEnvelope } from '@sentry/types' ;
2+ import type { SpanEnvelope } from '@sentry/types' ;
33import { sentryTest } from '../../../../utils/fixtures' ;
44import type { EventAndTraceHeader } from '../../../../utils/helpers' ;
55import {
You can’t perform that action at this time.
0 commit comments