21 lines
563 B
TypeScript
21 lines
563 B
TypeScript
// @vitest-environment jsdom
|
|
|
|
import { render, screen } from "@testing-library/react";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
type StatusProps = Readonly<{
|
|
label: string;
|
|
tone: "neutral" | "positive";
|
|
}>;
|
|
|
|
function Status({ label, tone }: StatusProps) {
|
|
return <output data-tone={tone}>{label}</output>;
|
|
}
|
|
|
|
describe("TSX test tooling", () => {
|
|
it("parses, lints, type-checks, and renders TSX", () => {
|
|
render(<Status label="ready" tone="positive" />);
|
|
expect(screen.getByText("ready")).toHaveAttribute("data-tone", "positive");
|
|
});
|
|
});
|