开玩笑的意外标识符:React

时间:2018-07-10 09:06:42

标签: reactjs testing jestjs

当我尝试用笑话在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()时,它不会识别出浅。

随时询问更多细节。

1 个答案:

答案 0 :(得分:1)

您必须将jest中的react-scripts test --env=jsdom更改为npm test