import { render, screen } from "@testing-library/react"; import React from "react"; import { Alert } from "./Alert"; describe("Alert", () => { it("should display progress at start correctly", () => { render( ); expect(screen.getByTestId("alert")).toHaveClass("bg-yellow-50"); }); });