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(web): add missing structure-absent assertions for banUsers/lockTopics (ATB-42)

Malpercio e7d4609c 30b64ff7

+2
+2
apps/web/src/routes/__tests__/admin.test.tsx
··· 138 138 expect(res.status).toBe(200); 139 139 const html = await res.text(); 140 140 expect(html).not.toContain('href="/admin/members"'); 141 + expect(html).not.toContain('href="/admin/structure"'); 141 142 expect(html).toContain('href="/admin/modlog"'); 142 143 }); 143 144 ··· 150 151 expect(res.status).toBe(200); 151 152 const html = await res.text(); 152 153 expect(html).not.toContain('href="/admin/members"'); 154 + expect(html).not.toContain('href="/admin/structure"'); 153 155 expect(html).toContain('href="/admin/modlog"'); 154 156 }); 155 157