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

10 lines
186 B
TypeScript
Raw Normal View History

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