(ctx context.Context, workspaceID uuid.UUID)
| 46 | } |
| 47 | |
| 48 | func (m *fakeClient) watchWorkspace(ctx context.Context, workspaceID uuid.UUID) (<-chan codersdk.Workspace, error) { |
| 49 | m.logger.Debug(ctx, "called fake WatchWorkspace", slog.F("workspace_id", workspaceID.String())) |
| 50 | return m.workspaceUpdatesCh, nil |
| 51 | } |
| 52 | |
| 53 | const ( |
| 54 | testAgentToken = "test-agent-token" |