kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

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

at main 8 lines 226 B view raw
1import { describe, expect, it } from "vitest"; 2import { cn } from "./cn"; 3 4describe("cn", () => { 5 it("merges tailwind classes and resolves conflicts", () => { 6 expect(cn("px-2 py-1", "px-4")).toBe("py-1 px-4"); 7 }); 8});