feat: add phase 6 js_library and ts_library bootstrap

This commit is contained in:
Eric
2026-03-04 07:31:19 +00:00
parent da77555713
commit 71aca14ad8
10 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { expect, test } from "bun:test";
import { greeting } from "./helper";
test("uses helper from ts_library dep", () => {
expect(greeting("test")).toBe("hello-test");
});