chore(core): format session runner test

This commit is contained in:
Kit Langton 2026-07-02 20:54:00 -04:00
commit 417c88fc40

View file

@ -2811,7 +2811,8 @@ describe("SessionRunnerLLM", () => {
description: "Ask the user",
input: Schema.Struct({}),
output: Schema.Struct({}),
execute: (_, context) => questions.ask({ sessionID: context.sessionID, questions: [] }).pipe(Effect.as({}), Effect.orDie),
execute: (_, context) =>
questions.ask({ sessionID: context.sessionID, questions: [] }).pipe(Effect.as({}), Effect.orDie),
}),
})
yield* session.prompt({ sessionID, prompt: Prompt.make({ text: "Ask then stop" }), resume: false })