Files
auto-virtual-tryon-frontend/tests/ui/page-toolbar.test.tsx
2026-03-28 00:16:01 +08:00

20 lines
616 B
TypeScript

import { render, screen } from "@testing-library/react";
import { PageToolbar } from "@/components/ui/page-toolbar";
import { Input } from "@/components/ui/input";
import { Select } from "@/components/ui/select";
test("renders a dense toolbar row with compact controls", () => {
render(
<PageToolbar>
<Input aria-label="search" />
<Select aria-label="status">
<option value="all"></option>
</Select>
</PageToolbar>,
);
expect(screen.getByLabelText("search").className).toContain("h-9");
expect(screen.getByLabelText("status").className).toContain("h-9");
});