Skip to content

Commit 93c9c74

Browse files
committed
Fix formatting
1 parent c3117d0 commit 93c9c74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

client/src/components/__tests__/ToolsTab.test.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ describe("ToolsTab", () => {
8585
selectedTool: mockTools[1], // Use the tool with integer type
8686
});
8787

88-
const input = screen.getByRole("spinbutton", { name: /count/i }) as HTMLInputElement;
88+
const input = screen.getByRole("spinbutton", {
89+
name: /count/i,
90+
}) as HTMLInputElement;
8991
expect(input).toHaveProperty("type", "number");
9092
fireEvent.change(input, { target: { value: "42" } });
9193
expect(input.value).toBe("42");

0 commit comments

Comments
 (0)