2021-01-02 10:58:24 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2021-08-03 06:25:13 +00:00
|
|
|
import { render } from "@testing-library/react";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
2021-06-19 08:20:43 +00:00
|
|
|
import TimerIcon from "@components/TimerIcon";
|
2019-11-24 19:01:58 +00:00
|
|
|
|
2021-01-02 10:58:24 +00:00
|
|
|
it("renders without crashing", () => {
|
2021-08-03 06:25:13 +00:00
|
|
|
render(<TimerIcon width={32} height={32} period={30} />);
|
2021-01-02 10:58:24 +00:00
|
|
|
});
|