mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
541 B
541 B
Vitest Opentelemtry Example
- Documentation: https://vitest.dev/guide/open-telemetry.html
Usage
# Start Jaeger service to receive otlp traces over http
# and serve Web UI at http://localhost:16686
docker compose up -d
# Run tests (exports with OTLP HTTP by deafult)
pnpm test --experimental.openTelemetry.enabled
# Use console exporter for quick debugging
OTEL_TRACES_EXPORTER=console pnpm test --experimental.openTelemetry.enabled
# Run browser mode
pnpm test --experimental.openTelemetry.enabled --browser.enabled