Add test framework, unit tests, and CI validation workflow #3

Merged
jdb merged 6 commits from feat/test-framework into main 2026-05-05 20:07:13 +00:00
Showing only changes of commit 31cf9ceef7 - Show all commits
+11
View File
@@ -0,0 +1,11 @@
import { describe, test, expect } from "bun:test";
import { LogService } from "../src/log-service";
describe("LogService", () => {
test("creates a root logger on construction", () => {
const svc = new LogService();
expect(svc.ROOT_LOGGER).toBeDefined();
expect(svc.ROOT_LOGGER.name).toBe("ROOT");
});
});