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

10 lines
201 B
TypeScript
Raw Normal View History

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