Files
twitch-panels/tests/unit/components/ui/Alignment.test.ts
T
Ku6epXBOCTuK 0f905bbc20 feat: move to unimport-icons
@lucide icons works very slow in barrel import, so i move to
unimport and use lucide icons
2026-02-08 20:20:46 +05:00

14 lines
333 B
TypeScript

import Alignment from "$components/ui/Alignment.svelte";
import { render } from "@testing-library/svelte";
import { describe, it } from "vitest";
describe("Alignment.svelte", () => {
it("should render without crashing", () => {
render(Alignment, {
props: {
align: "left",
},
});
});
});