(ctx context.Context, t *testing.T, store database.Store, agentID uuid.UUID)
| 958 | } |
| 959 | |
| 960 | func assertEventuallyLost(ctx context.Context, t *testing.T, store database.Store, agentID uuid.UUID) { |
| 961 | t.Helper() |
| 962 | assertEventuallyStatus(ctx, t, store, agentID, database.TailnetStatusLost) |
| 963 | } |
| 964 | |
| 965 | func assertEventuallyNoClientsForAgent(ctx context.Context, t *testing.T, store database.Store, agentID uuid.UUID) { |
| 966 | t.Helper() |
no test coverage detected