refactor(server): canonicalize service API (#31049)

This commit is contained in:
Dax
2026-06-07 03:27:28 +00:00
committed by GitHub
parent 53ff1b57c9
commit fe0c4f8c74
388 changed files with 7103 additions and 4092 deletions
+8
View File
@@ -0,0 +1,8 @@
import { expect, test } from "bun:test"
import { createRenderer, createTuiRenderer, mount, run, tui } from "../src"
test("exports the canonical application lifecycle", () => {
expect(run).toBe(tui)
expect(createRenderer).toBe(createTuiRenderer)
expect(typeof mount).toBe("function")
})