Skip to content

Instantly share code, notes, and snippets.

@kunokdev
Created April 19, 2019 22:42
Show Gist options
  • Save kunokdev/6109c1c32d1c063e239f7cff68179f35 to your computer and use it in GitHub Desktop.
Save kunokdev/6109c1c32d1c063e239f7cff68179f35 to your computer and use it in GitHub Desktop.
test example
const window = global;
window._env_ = {
API_URL: "https://github.com"
};
it("renders without crashing", () => {
const div = document.createElement("div");
ReactDOM.render(<App />, div);
ReactDOM.unmountComponentAtNode(div);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment