index.test.tsx 171 B

123456
  1. import { expect, test } from "bun:test"
  2. import { run } from "../src"
  3. test("exports the canonical application lifecycle", () => {
  4. expect(typeof run).toBe("function")
  5. })