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

18 lines
452 B
TypeScript
Raw Normal View History

import React from "react";
import { render } from "@testing-library/react";
import FingerTouchIcon from "@components/FingerTouchIcon";
it("renders without crashing", () => {
render(<FingerTouchIcon size={32} />);
});
it("renders animated without crashing", () => {
render(<FingerTouchIcon size={32} animated />);
});
it("renders animated and strong without crashing", () => {
render(<FingerTouchIcon size={32} animated strong />);
});