mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
21 lines
641 B
TypeScript
21 lines
641 B
TypeScript
import React from "react";
|
|
import { screen, waitFor } 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(
|
|
<PerformanceImpactCell value={PERFORMANCE_IMPACT} />
|
|
);
|
|
|
|
await user.hover(screen.getByText("Minimal"));
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByText(/little to no impact/i)).toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|