WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

test(appview): add error body assertion to PUT boards malformed JSON test (ATB-45)

Malpercio c22b6ac8 d904ad04

+2
+2
apps/appview/src/routes/__tests__/admin.test.ts
··· 1809 1809 }); 1810 1810 1811 1811 expect(res.status).toBe(400); 1812 + const data = await res.json(); 1813 + expect(data.error).toContain("Invalid JSON"); 1812 1814 expect(mockPutRecord).not.toHaveBeenCalled(); 1813 1815 }); 1814 1816