File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export function getTraceData(
55
55
56
56
const validBaggage = isValidBaggageString ( baggage ) ;
57
57
if ( ! validBaggage ) {
58
- logger . warn ( 'Invalid baggage data. Not returning "baggage" meta tag ' ) ;
58
+ logger . warn ( 'Invalid baggage data. Not returning "baggage" value ' ) ;
59
59
}
60
60
61
61
return {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const mockedScope = {
20
20
} as any ;
21
21
22
22
describe ( 'getTraceData' , ( ) => {
23
- it ( 'returns the tracing meta tags from the span, if it is provided ' , ( ) => {
23
+ it ( 'returns the tracing data from the span, if a span is available ' , ( ) => {
24
24
{
25
25
jest . spyOn ( SentryCoreTracing , 'getDynamicSamplingContextFromSpan' ) . mockReturnValueOnce ( {
26
26
environment : 'production' ,
@@ -59,7 +59,7 @@ describe('getTraceData', () => {
59
59
} ) ;
60
60
} ) ;
61
61
62
- it ( 'returns only the `sentry-trace` tag if no DSC is available' , ( ) => {
62
+ it ( 'returns only the `sentry-trace` value if no DSC is available' , ( ) => {
63
63
jest . spyOn ( SentryCoreTracing , 'getDynamicSamplingContextFromClient' ) . mockReturnValueOnce ( {
64
64
trace_id : '' ,
65
65
public_key : undefined ,
You can’t perform that action at this time.
0 commit comments