2019-05-02 12:40:03 +02:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
2019-03-02 11:37:17 -05:00
|
|
|
|
2019-05-02 12:40:03 +02:00
|
|
|
it("renders without crashing", () => {
|
|
|
|
const div = document.createElement("div");
|
2019-03-02 11:37:17 -05:00
|
|
|
ReactDOM.render(<App />, div);
|
|
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
|
|
});
|