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): improve preset test descriptions (ATB-52)

Malpercio 5b8068f7 01de4c31

+3 -3
+3 -3
apps/web/src/styles/presets/__tests__/presets.test.ts
··· 25 25 ]; 26 26 27 27 describe("neobrutal-light preset", () => { 28 - it("contains all required tokens including font-size-xs", () => { 28 + it("contains all required tokens", () => { 29 29 for (const token of REQUIRED_TOKENS) { 30 30 expect(neobrutalLight, `missing token: ${token}`).toHaveProperty(token); 31 31 } ··· 40 40 }); 41 41 42 42 describe("neobrutal-dark preset", () => { 43 - it("contains all required tokens including font-size-xs", () => { 43 + it("contains all required tokens", () => { 44 44 for (const token of REQUIRED_TOKENS) { 45 45 expect(neobrutalDark, `missing token: ${token}`).toHaveProperty(token); 46 46 } 47 47 }); 48 48 49 - it("has a darker background than the light preset", () => { 49 + it("has a different background color than the light preset", () => { 50 50 expect((neobrutalDark as Record<string, string>)["color-bg"]).not.toBe( 51 51 (neobrutalLight as Record<string, string>)["color-bg"] 52 52 );