mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 04:28:29 +00:00
8 lines
334 B
TypeScript
8 lines
334 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("opencode -s ses_123")
|
|
})
|