2021-01-02 17:58:24 +07:00
|
|
|
import React from "react";
|
|
|
|
|
2021-08-03 13:25:13 +07:00
|
|
|
import { render } from "@testing-library/react";
|
2021-01-02 17:58:24 +07:00
|
|
|
|
2021-06-19 15:20:43 +07:00
|
|
|
import FingerTouchIcon from "@components/FingerTouchIcon";
|
2019-11-25 02:01:58 +07:00
|
|
|
|
2021-01-02 17:58:24 +07:00
|
|
|
it("renders without crashing", () => {
|
2021-08-03 13:25:13 +07:00
|
|
|
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 />);
|
2021-01-02 17:58:24 +07:00
|
|
|
});
|