15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
// @vitest-environment jsdom
|
|
|
|
import { render, screen } from "@testing-library/react"
|
|
import { describe, expect, it } from "vitest"
|
|
|
|
import { Button } from "./button"
|
|
|
|
describe("Button", () => {
|
|
it("renders label", () => {
|
|
render(<Button>Save</Button>)
|
|
|
|
expect(screen.getByRole("button", { name: "Save" })).toBeInTheDocument()
|
|
})
|
|
})
|