b51_render_commit.test.ts
raw
// Sibling test for c51_render_commit.ts (Layer 1, render). End-to-end
// shape covered by /GIT/.../commit/<sha> e2e; this pins the export.
import { describe, test, expect } from "bun:test";
import { renderCommitView } from "./b51_render_commit.ts";
describe("c51_render_commit — export shape", () => {
test("renderCommitView is an async-style function", () => {
expect(typeof renderCommitView).toBe("function");
});
});