import { expect, test } from "@jest/globals"; import { classNames } from "../src"; test("joins html class strings", () => { let isVisible = false; expect(classNames("bg-blue-300", isVisible ? "block" : "hidden")).toBe( "bg-blue-300 hidden", ); });