forked from baron/baron-sso
린트 적용
This commit is contained in:
@@ -6,7 +6,9 @@ import { Button } from "./button";
|
||||
describe("Button Component", () => {
|
||||
it("renders correctly with children", () => {
|
||||
render(<Button>Click me</Button>);
|
||||
expect(screen.getByRole("button", { name: /click me/i })).toBeInTheDocument();
|
||||
expect(
|
||||
screen.getByRole("button", { name: /click me/i }),
|
||||
).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it("applies variant classes correctly", () => {
|
||||
@@ -23,7 +25,7 @@ describe("Button Component", () => {
|
||||
const onClick = vi.fn();
|
||||
const user = userEvent.setup();
|
||||
render(<Button onClick={onClick}>Click me</Button>);
|
||||
|
||||
|
||||
await user.click(screen.getByRole("button", { name: /click me/i }));
|
||||
expect(onClick).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user