2021-01-02 10:58:24 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2019-11-24 19:01:58 +00:00
|
|
|
import { mount } from "enzyme";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
2019-11-24 19:01:58 +00:00
|
|
|
import FailureIcon from "./FailureIcon";
|
|
|
|
|
2021-01-02 10:58:24 +00:00
|
|
|
it("renders without crashing", () => {
|
2019-11-24 19:01:58 +00:00
|
|
|
mount(<FailureIcon />);
|
2021-01-02 10:58:24 +00:00
|
|
|
});
|