(kind: FragmentKind, suffix: string)
| 406 | const fragmentKinds: readonly FragmentKind[] = ["text", "reasoning", "tool input"] |
| 407 | |
| 408 | const fragmentID = (kind: FragmentKind, suffix: string) => `${kind === "tool input" ? "call" : kind}-${suffix}` |
| 409 | |
| 410 | const fragmentFixture = (kind: FragmentKind, id: string, chunks: readonly string[]): FragmentFixture => { |
| 411 | const text = chunks.join("") |
no outgoing calls
no test coverage detected