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

7 lines
188 B
TypeScript
Raw Normal View History

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