当我尝试使用 jest 对 reactjs 执行测试时,它总是向我返回错误: 我已正确安装 Jest,我尝试删除导入但它在下一个时出错。
App.test.js:
import React from 'react';
import {shallow }from 'enzyme';
import renderer from 'react-test-renderer';
import ReactDOM from 'react-dom';
import App from './App.js';
import User from './Modules/User.js';
const user = {
email: "test@gmail.com",
first_name: "test",
last_name: "test"
}
test('Users renders properly', () => {
const wrapper = shallow("<User users={user}/>");
const element = wrapper.find('input');
});
如果它没有说导入错误,那么当我设置shallow()时它不会识别shallow;
随意询问更多细节。