We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14ec02 commit 6561785Copy full SHA for 6561785
packages/apm/test/span.test.ts
@@ -158,7 +158,6 @@ describe('Span', () => {
158
const spanA = new Span({ traceId: 'a', spanId: 'b' }) as any;
159
const spanB = new Span({
160
parentSpanId: spanA.spanId,
161
- sampled: false,
162
spanId: 'd',
163
traceId: 'c',
164
});
@@ -167,7 +166,6 @@ describe('Span', () => {
167
166
delete (serialized as { start_timestamp: number }).start_timestamp;
168
expect(serialized).toStrictEqual({
169
parent_span_id: 'b',
170
171
span_id: 'd',
172
trace_id: 'c',
173
0 commit comments