보조기억장치

Test Suites Group 본문

React

Test Suites Group

캐세이 2023. 4. 8. 21:39

import { render, screen } from "@testing-library/react";
import Greeting from "./Greeting";

// 테스트 그룹을 만들때는 아래와 같이 describe 에 작성


describe("Greeting component", () => {
  test("renders Hello World as a text", () => {
    render(<Greeting />);

    const helloWorldElement = screen.getByText("Hello World", { exact: false });
    expect(helloWorldElement).toBeInTheDocument();
  });
});