javascript App.test解释代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript App.test解释代码相关的知识,希望对你有一定的参考价值。


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);
});

以上是关于javascript App.test解释代码的主要内容,如果未能解决你的问题,请参考以下文章

javascript代码解释

有人可以解释以下 javascript 代码吗?

有人可以解释这段 JavaScript 代码吗

JavaScript预解释是一种毫无节操的机制

JavaScript预解释是一种毫无节操的机制

JavaScript预解释是一种毫无节操的机制