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

10 lines
184 B
TypeScript
Raw Normal View History

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