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

10 lines
214 B
TypeScript
Raw Normal View History

import React from "react";
import { render } from "@testing-library/react";
import InformationIcon from "@components/InformationIcon";
it("renders without crashing", () => {
render(<InformationIcon />);
});