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

10 lines
202 B
TypeScript
Raw Normal View History

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