@@ -728,7 +728,6 @@ describe('browserTracingIntegration', () => {
728
728
} ) ;
729
729
expect ( oldIsolationScopePropCtx ) . toEqual ( {
730
730
traceId : expect . stringMatching ( / [ a - f 0 - 9 ] { 32 } / ) ,
731
- propagationSpanId : expect . stringMatching ( / [ a - f 0 - 9 ] { 16 } / ) ,
732
731
sampleRand : expect . any ( Number ) ,
733
732
} ) ;
734
733
expect ( newCurrentScopePropCtx ) . toEqual ( {
@@ -763,20 +762,18 @@ describe('browserTracingIntegration', () => {
763
762
} ) ;
764
763
765
764
const propCtxBeforeEnd = getCurrentScope ( ) . getPropagationContext ( ) ;
766
- expect ( propCtxBeforeEnd ) . toStrictEqual ( {
765
+ expect ( propCtxBeforeEnd ) . toEqual ( {
767
766
sampleRand : expect . any ( Number ) ,
768
767
traceId : expect . stringMatching ( / [ a - f 0 - 9 ] { 32 } / ) ,
769
- propagationSpanId : expect . stringMatching ( / [ a - f 0 - 9 ] { 16 } / ) ,
770
768
} ) ;
771
769
772
770
navigationSpan ! . end ( ) ;
773
771
774
772
const propCtxAfterEnd = getCurrentScope ( ) . getPropagationContext ( ) ;
775
- expect ( propCtxAfterEnd ) . toStrictEqual ( {
773
+ expect ( propCtxAfterEnd ) . toEqual ( {
776
774
traceId : propCtxBeforeEnd . traceId ,
777
775
sampled : true ,
778
776
sampleRand : expect . any ( Number ) ,
779
- propagationSpanId : expect . stringMatching ( / [ a - f 0 - 9 ] { 16 } / ) ,
780
777
dsc : {
781
778
release : undefined ,
782
779
org_id : undefined ,
@@ -807,20 +804,18 @@ describe('browserTracingIntegration', () => {
807
804
} ) ;
808
805
809
806
const propCtxBeforeEnd = getCurrentScope ( ) . getPropagationContext ( ) ;
810
- expect ( propCtxBeforeEnd ) . toStrictEqual ( {
807
+ expect ( propCtxBeforeEnd ) . toEqual ( {
811
808
traceId : expect . stringMatching ( / [ a - f 0 - 9 ] { 32 } / ) ,
812
809
sampleRand : expect . any ( Number ) ,
813
- propagationSpanId : expect . stringMatching ( / [ a - f 0 - 9 ] { 16 } / ) ,
814
810
} ) ;
815
811
816
812
navigationSpan ! . end ( ) ;
817
813
818
814
const propCtxAfterEnd = getCurrentScope ( ) . getPropagationContext ( ) ;
819
- expect ( propCtxAfterEnd ) . toStrictEqual ( {
815
+ expect ( propCtxAfterEnd ) . toEqual ( {
820
816
traceId : propCtxBeforeEnd . traceId ,
821
817
sampled : false ,
822
818
sampleRand : expect . any ( Number ) ,
823
- propagationSpanId : expect . stringMatching ( / [ a - f 0 - 9 ] { 16 } / ) ,
824
819
dsc : {
825
820
release : undefined ,
826
821
org_id : undefined ,
0 commit comments