mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
13 lines
182 B
Go
13 lines
182 B
Go
package trace_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/pomerium/pomerium/pkg/telemetry/trace"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
trace.UseGlobalPanicTracer()
|
|
os.Exit(m.Run())
|
|
}
|