test: Phase 1 unit tests for API routes and web components #85

Merged
groombook-engineer[bot] merged 3 commits from feat/gro-76-unit-tests into main 2026-03-21 03:05:38 +00:00
Showing only changes of commit b7145271fb - Show all commits
+1
View File
@@ -267,6 +267,7 @@ describe("DELETE /clients/:id", () => {
expect(res.status).toBe(200);
const body = await res.json();
expect(body.ok).toBe(true);
expect(deletedId).toBe("client-uuid-1");
});
it("returns 404 when client not found", async () => {