我JEST
用来测试我的反应应用程序。
我得到错误和一些文本,如下图所示。
此外,我的测试用例的代码(名为:TodoApp.test.jsx)如下:
it("should add todo ...", () => {
// const text = "Suzal is trying react";
// I commented out the other lines because the test
// only gave error when this line was included.
const todoApp = TestUtils.renderIntoDocument(<TodoApp />);
// todoApp.state = {
// todos: []
// }
// todoApp.handleAddTodo(text);
// expect(todoApp.state.todos[0].text).toBe(text);
});
如果需要额外的代码/描述,请询问。完整的文件在 Github 上:TodoApp.test.jsx
我已经浏览过的链接