fix: remove unused body variable in permissions e2e test
Check Deno code / Check Deno code (pull_request) Successful in 6s
Tests / Unit tests (pull_request) Successful in 12s
Tests / Integration tests (pull_request) Successful in 59s

This commit is contained in:
2026-04-26 14:19:26 +02:00
committed by djalim
parent 3080ede9cf
commit 0bf3f3870c
-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);