2020-04-19 13:47:19 +00:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
2019-11-12 12:21:05 +00:00
|
|
|
|
2020-04-19 13:47:19 +00:00
|
|
|
it("renders without crashing", () => {
|
|
|
|
const div = document.createElement("div");
|
2019-11-12 12:21:05 +00:00
|
|
|
ReactDOM.render(<App />, div);
|
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
|
|
});
|