We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b8795d commit 4e65c7aCopy full SHA for 4e65c7a
1 file changed
packages/opentelemetry-tracing/test/Span.test.ts
@@ -230,7 +230,11 @@ describe('Span', () => {
230
assert.deepStrictEqual(span.attributes, {});
231
assert.deepStrictEqual(span.links, []);
232
assert.deepStrictEqual(span.events, []);
233
+
234
assert.ok(span.instrumentationLibrary);
235
+ const { name, version } = span.instrumentationLibrary;
236
+ assert.strictEqual(name, 'default');
237
+ assert.strictEqual(version, '*');
238
});
239
240
it('should return ReadableSpan with attributes', () => {
0 commit comments