lightstep-tracer
Version:
> ❗ **This instrumentation is no longer recommended**. Please review [documentation on setting up and configuring the OpenTelemetry Node.js Launcher](https://github.com/lightstep/otel-launcher-node) or [OpenTelemetry JS (Browser)](https://github.com/open-
42 lines (34 loc) • 1.25 kB
JavaScript
describe("SpanContext", function() {
describe("SpanContext#setBaggageItem", function() {
it('is a method', function() {
var span = Tracer.startSpan('test');
var spanContext = span.context();
span.finish();
expect(spanContext.setBaggageItem).to.be.a("function");
});
});
describe("SpanContext#getBaggageItem", function() {
it('is a method', function() {
var span = Tracer.startSpan('test');
var spanContext = span.context();
span.finish();
expect(spanContext.getBaggageItem).to.be.a("function");
});
});
describe("SpanContext#toTraceId", function() {
it('is a method', function() {
var span = Tracer.startSpan('test');
var spanContext = span.context();
span.finish();
expect(spanContext.toSpanId).to.be.a("function");
});
});
describe("SpanContext#toSpanId", function() {
it('is a method', function() {
var span = Tracer.startSpan('test');
var spanContext = span.context();
span.finish();
expect(spanContext.toTraceId).to.be.a("function");
});
});
});