Release Candidate : 1.0.0 #150

Merged
djalim merged 103 commits from release/1.0.0 into main 2026-05-01 17:32:02 +00:00
Showing only changes of commit a3b55d0a1b - Show all commits
-2
View File
@@ -13,8 +13,6 @@ Deno.test({
makeEmployeeContext(),
);
assertEquals(res.status, 200);
const body = JSON.parse(res.body ? "" : "[]");
// handler returns synchronously — parse via text
return res.text().then((text) => {
const data = JSON.parse(text);
assertEquals(data.length, 9);