mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 10:45:33 -04:00
3f4fb3f9db
Co-authored-by: Dax <mail@thdxr.com>
9 lines
335 B
TypeScript
9 lines
335 B
TypeScript
import { expect, test } from "bun:test"
|
|
import { sessionEpilogue } from "../../src/util/presentation"
|
|
|
|
test("formats session continuation summary", () => {
|
|
const epilogue = sessionEpilogue({ title: "A session", sessionID: "ses_123" })
|
|
expect(epilogue).toContain("A session")
|
|
expect(epilogue).toContain("opencode2 -s ses_123")
|
|
})
|