fix(20): prettier format admin.test.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lucas Berger
2026-06-18 18:05:14 -04:00
co-authored by Claude Sonnet 4.6
parent 182ba1d477
commit 41a4faec94
+1 -3
View File
@@ -1234,9 +1234,7 @@ describe('PATCH /api/admin/members/:id', () => {
currentDevUserId = adminId;
const app = await getApp();
const res = await app.fetch(
jsonRequest('PATCH', `/api/admin/members/${memberId}`, {}),
);
const res = await app.fetch(jsonRequest('PATCH', `/api/admin/members/${memberId}`, {}));
expect(res.status).toBe(400);
const body = (await res.json()) as { error: string };
expect(body.error).toBe('Invalid request');