@@ -4,7 +4,6 @@ import { ROOT_CONTEXT } from '@opentelemetry/api';
4
4
import { SpanKind } from '@opentelemetry/api' ;
5
5
import { TraceFlags , context , trace } from '@opentelemetry/api' ;
6
6
import type { ReadableSpan } from '@opentelemetry/sdk-trace-base' ;
7
- import { Span as SpanClass } from '@opentelemetry/sdk-trace-base' ;
8
7
import {
9
8
SEMANTIC_ATTRIBUTE_SENTRY_OP ,
10
9
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
@@ -32,6 +31,8 @@ import { getSpanKind } from '../src/utils/getSpanKind';
32
31
import { makeTraceState } from '../src/utils/makeTraceState' ;
33
32
import { spanHasAttributes , spanHasName } from '../src/utils/spanTypes' ;
34
33
import { cleanupOtel , mockSdkInit } from './helpers/mockSdkInit' ;
34
+ import { isSpan } from './helpers/isSpan' ;
35
+ import { INSPECT_MAX_BYTES } from 'buffer' ;
35
36
36
37
describe ( 'trace' , ( ) => {
37
38
beforeEach ( ( ) => {
@@ -537,7 +538,7 @@ describe('trace', () => {
537
538
return span ;
538
539
} ) ;
539
540
540
- expect ( span ) . not . toBeInstanceOf ( SpanClass ) ;
541
+ expect ( isSpan ( span ) ) . toEqual ( false ) ;
541
542
} ) ;
542
543
543
544
it ( 'creates a span if there is a parent' , ( ) => {
@@ -549,7 +550,7 @@ describe('trace', () => {
549
550
return span ;
550
551
} ) ;
551
552
552
- expect ( span ) . toBeInstanceOf ( SpanClass ) ;
553
+ expect ( isSpan ( span ) ) . toEqual ( true ) ;
553
554
} ) ;
554
555
} ) ;
555
556
} ) ;
@@ -829,7 +830,7 @@ describe('trace', () => {
829
830
it ( 'does not create a span if there is no parent' , ( ) => {
830
831
const span = startInactiveSpan ( { name : 'test span' , onlyIfParent : true } ) ;
831
832
832
- expect ( span ) . not . toBeInstanceOf ( SpanClass ) ;
833
+ expect ( isSpan ( span ) ) . toEqual ( false ) ;
833
834
} ) ;
834
835
835
836
it ( 'creates a span if there is a parent' , ( ) => {
@@ -839,7 +840,7 @@ describe('trace', () => {
839
840
return span ;
840
841
} ) ;
841
842
842
- expect ( span ) . toBeInstanceOf ( SpanClass ) ;
843
+ expect ( isSpan ( span ) ) . toEqual ( true ) ;
843
844
} ) ;
844
845
} ) ;
845
846
@@ -1199,7 +1200,7 @@ describe('trace', () => {
1199
1200
return span ;
1200
1201
} ) ;
1201
1202
1202
- expect ( span ) . not . toBeInstanceOf ( SpanClass ) ;
1203
+ expect ( isSpan ( span ) ) . toEqual ( false ) ;
1203
1204
} ) ;
1204
1205
1205
1206
it ( 'creates a span if there is a parent' , ( ) => {
@@ -1211,7 +1212,7 @@ describe('trace', () => {
1211
1212
return span ;
1212
1213
} ) ;
1213
1214
1214
- expect ( span ) . toBeInstanceOf ( SpanClass ) ;
1215
+ expect ( isSpan ( span ) ) . toEqual ( true ) ;
1215
1216
} ) ;
1216
1217
} ) ;
1217
1218
} ) ;
0 commit comments