7 lines
171 B
TypeScript
7 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")
|
|
})
|