Run prettier and lint

This commit is contained in:
adilallo
2026-04-04 11:04:37 -06:00
parent 427dc44476
commit 1f6d38f71d
6 changed files with 49 additions and 41 deletions
+4 -4
View File
@@ -11,10 +11,10 @@ describe("InfoMessageBox", () => {
];
it("renders title and item labels", () => {
render(
<InfoMessageBox title="Important" items={items} />,
);
expect(screen.getByRole("region", { name: "Important" })).toBeInTheDocument();
render(<InfoMessageBox title="Important" items={items} />);
expect(
screen.getByRole("region", { name: "Important" }),
).toBeInTheDocument();
expect(screen.getByText("Important")).toBeInTheDocument();
expect(screen.getByText("Option A")).toBeInTheDocument();
expect(screen.getByText("Option B")).toBeInTheDocument();