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): verify deleteRecord called with exact theme args (ATB-57)

Malpercio 94f5613d 04f93908

+5 -1
+5 -1
apps/appview/src/routes/__tests__/admin.test.ts
··· 2836 2836 expect(res.status).toBe(200); 2837 2837 const body = await res.json(); 2838 2838 expect(body.success).toBe(true); 2839 - expect(mockDeleteRecord).toHaveBeenCalledOnce(); 2839 + expect(mockDeleteRecord).toHaveBeenCalledWith({ 2840 + repo: ctx.config.forumDid, 2841 + collection: "space.atbb.forum.theme", 2842 + rkey: themeRkey, 2843 + }); 2840 2844 }); 2841 2845 2842 2846 it("returns 404 for unknown rkey", async () => {