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

7 lines
188 B
TypeScript
Raw Normal View History

import React from 'react';
import { mount } from "enzyme";
import TimerIcon from "./TimerIcon";
it('renders without crashing', () => {
mount(<TimerIcon width={32} height={32} />);
});