import React from "react"; import { screen } from "@testing-library/react"; import { renderWithSetup } from "test/test-utils"; import PerformanceImpactCell from "./PerformanceImpactCell"; const PERFORMANCE_IMPACT = { indicator: "Minimal", id: 3 }; describe("Query performance cell", () => { it("renders pill text and tooltip on hover", async () => { const { user } = renderWithSetup( ); await user.hover(screen.getByText("Minimal")); expect(screen.getByText(/little to no impact/i)).toBeInTheDocument(); }); });