(t *testing.T)
| 265 | } |
| 266 | |
| 267 | func TestCoordinator_Lost(t *testing.T) { |
| 268 | t.Parallel() |
| 269 | logger := testutil.Logger(t) |
| 270 | coordinator := tailnet.NewCoordinator(logger) |
| 271 | ctx := testutil.Context(t, testutil.WaitShort) |
| 272 | test.LostTest(ctx, t, coordinator) |
| 273 | } |
| 274 | |
| 275 | // TestCoordinatorPropogatedPeerContext tests that the context for a specific peer |
| 276 | // is propogated through to the `Authorize“ method of the coordinatee auth |
nothing calls this directly
no test coverage detected