Jest 意外标识符:React
2018-07-10
1574
当我尝试使用 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: "[email protected]",
first_name: "test",
last_name: "test"
}
test('Users renders properly', () => {
const wrapper = shallow("<User users={user}/>");
const element = wrapper.find('input');
});
如果它没有说导入错误,当我设置 shallow() 时它不会识别 shallow;
请随时询问更多详细信息。
1个回答
您必须在
npm test
中将
jest
更改为
react-scripts test --env=jsdom
Yeta
2019-04-26