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 10 lines 323 B view raw
1import { render, screen } from "@testing-library/react"; 2import { describe, expect, it } from "vitest"; 3import { Separator } from "./separator"; 4 5describe("Separator", () => { 6 it("renders a horizontal separator", () => { 7 render(<Separator />); 8 expect(screen.getByRole("separator")).toBeInTheDocument(); 9 }); 10});