fleet/frontend/components/TableContainer/DataTable/PerformanceImpactCell/PerformanceImpactCell.tests.tsx

20 lines
596 B
TypeScript
Raw Normal View History

import React from "react";
import { screen } from "@testing-library/react";
2022-12-15 17:06:09 +00:00
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"));
expect(screen.getByText(/little to no impact/i)).toBeInTheDocument();
});
});