mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 03:58:29 +00:00
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import { expect, test } from "bun:test"
|
|
import { run } from "../src"
|
|
|
|
test("exports the canonical application lifecycle", () => {
|
|
expect(typeof run).toBe("function")
|
|
})
|