UNPKG

@otel-test-runner/bun-test

Version:

Bun Test Runner with Open telemetry support for auto-instrumentation with dagger

9 lines (8 loc) 205 B
import type { Context, Span } from "@opentelemetry/api"; export type TestTree = { name: string; parent?: TestTree; ctx?: Context; span?: Span; }; export declare const testTree: TestTree[];