Jest with webpack 提供插件
Jest with webpack provide plugin
我正在使用 webpack-provide-plugin 导入 react。
new webpack.ProvidePlugin({
"React": "react",
}),
// text.jsx
let text = (props) => (
<div>
<p class="text">this.props.text</p>
</div>
)
export default text
//text.test.js
import React from 'react';
import { shallow } from 'enzyme';
import text from 'text';
it('Renders text', () => {
const wrapper = shallow(<text/>);
expect(wrapper.hasClass("text")).toEqual(true);
});
但是当 运行 开玩笑地反应组件测试时,我得到了错误
ReferenceError: React is not defined
当然可以,因为没有显式导入 react。除了显式导入和放弃 provide-plugin 之外,有没有办法解决这个问题?
您可以像这样为 Jest 创建安装文件:
//jest.setup.js
window.React = require('react');
并将其添加到 Jest 配置中:
"setupFiles": [ "<rootDir>/jest.setup.js" ]
,
http://facebook.github.io/jest/docs/configuration.html#setupfiles-array
删除此行,因为您正在使用 webpack provide 插件证明此变量;
从 "react" 导入 React;
我正在使用 webpack-provide-plugin 导入 react。
new webpack.ProvidePlugin({
"React": "react",
}),
// text.jsx
let text = (props) => (
<div>
<p class="text">this.props.text</p>
</div>
)
export default text
//text.test.js
import React from 'react';
import { shallow } from 'enzyme';
import text from 'text';
it('Renders text', () => {
const wrapper = shallow(<text/>);
expect(wrapper.hasClass("text")).toEqual(true);
});
但是当 运行 开玩笑地反应组件测试时,我得到了错误
ReferenceError: React is not defined
当然可以,因为没有显式导入 react。除了显式导入和放弃 provide-plugin 之外,有没有办法解决这个问题?
您可以像这样为 Jest 创建安装文件:
//jest.setup.js
window.React = require('react');
并将其添加到 Jest 配置中:
"setupFiles": [ "<rootDir>/jest.setup.js" ]
,
http://facebook.github.io/jest/docs/configuration.html#setupfiles-array
删除此行,因为您正在使用 webpack provide 插件证明此变量;
从 "react" 导入 React;