test: simplify smoke test

This commit is contained in:
William Valentin
2026-02-01 02:40:51 -08:00
parent ddedfda976
commit 4c37115927

View File

@@ -1,8 +1,3 @@
import { expect, test } from "bun:test";
test("bun test runs", () => expect(1 + 1).toBe(2));
test("package.json has bun test script", async () => {
const pkg = await import("../../../../package.json");
expect(pkg.scripts.test).toBe("bun test");
});