mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 08:09:51 +00:00
6 lines
187 B
TypeScript
6 lines
187 B
TypeScript
import { expect, test } from "bun:test"
|
|
import { RunFooter } from "../../../src/cli/cmd/run/footer"
|
|
|
|
test("run footer class loads", () => {
|
|
expect(typeof RunFooter).toBe("function")
|
|
})
|