noximus
4/3/2019 - 9:28 PM

App.test explanation code


import CommentBox from "../CommentBox";
it("shows a comment box ", () => {
  // make a div
  const div = document.createElement("div");

  // shows the div we created
  ReactDOM.render(<App />, div);

  // Looks inside the div
  // and check to see if the CommentBox is in there
  // console.log(div.innerHTML);

  // bad practice
  // expect(div.innerHTML).toContain('Comment Box')

  // clean up code
  ReactDOM.unmountComponentAtNode(div);
});