authelia/web/src/components/PieChartIcon.test.tsx

10 lines
201 B
TypeScript
Raw Normal View History

import React from "react";
import { mount } from "enzyme";
import PieChartIcon from "@components/PieChartIcon";
it("renders without crashing", () => {
mount(<PieChartIcon progress={40} />);
});