You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
409 B
TypeScript
14 lines
409 B
TypeScript
import React, { HTMLAttributes } from "react";
|
|
import "@testing-library/jest-dom";
|
|
import { render, screen } from "@testing-library/react";
|
|
|
|
import { Box } from "./Box";
|
|
|
|
describe("Box", () => {
|
|
test("Check component renders", () => {
|
|
render(<Box data-testid="box">Hello world</Box>);
|
|
const box = screen.getByTestId("box") as HTMLDivElement;
|
|
expect(box.innerHTML).toBe("Hello world");
|
|
});
|
|
});
|