(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestTrackEvent_NoClientInContextIsSafe(t *testing.T) { |
| 36 | // Must not panic when the context carries no telemetry client. |
| 37 | TrackEvent(context.Background(), AuthStarted(FlowLogin, false)) |
| 38 | } |
| 39 | |
| 40 | func TestAuthStarted(t *testing.T) { |
| 41 | event := AuthStarted(FlowSignup, true) |
nothing calls this directly
no test coverage detected