(t *testing.T, runner *Runner, chatID uuid.UUID, events <-chan codersdk.ChatStreamEvent, markTurnStartReady func())
| 216 | } |
| 217 | |
| 218 | func runTestConversation(t *testing.T, runner *Runner, chatID uuid.UUID, events <-chan codersdk.ChatStreamEvent, markTurnStartReady func()) error { |
| 219 | t.Helper() |
| 220 | runner.resetConversation(time.Now(), markTurnStartReady) |
| 221 | return runner.runConversation(context.Background(), chatID, testLogger(), events) |
| 222 | } |
| 223 | |
| 224 | func TestRunnerCleanup(t *testing.T) { |
| 225 | t.Parallel() |
no test coverage detected