14 lines
467 B
JavaScript
14 lines
467 B
JavaScript
// Button.test.jsx
|
|
import { render, screen } from "@testing-library/react";
|
|
import { describe, expect, it } from "vitest";
|
|
import { Button } from "antd";
|
|
import "antd/dist/reset.css"; // Optional: include if needed for styling reset
|
|
|
|
describe("AntD Button", () => {
|
|
it("renders with correct text", () => {
|
|
render(<Button>Click me</Button>);
|
|
const button = screen.getByRole("button", { name: /click me/i });
|
|
expect(button).toBeInTheDocument();
|
|
});
|
|
});
|