mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 18:55:37 -04:00
9 lines
334 B
TypeScript
9 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")
|
|
})
|