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 FailureIcon from "@components/FailureIcon";
|
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(<FailureIcon />);
|
2021-01-02 10:58:24 +00:00
|
|
|
});
|