gpt4 book ai didi

reactjs - 使用 jest 进行 React 测试不支持 webpack 别名中的 moduleNameMapper

转载 作者:行者123 更新时间:2023-12-03 13:49:32 26 4
gpt4 key购买 nike

我正在使用 Jest 和 enzyme 来测试我的 react 组件。我还使用蓝图图标作为我的 react 组件中的依赖项之一。作为我的 webpack 配置的一部分,添加了以下内容:

config.resolve.alias = {
blueprintIcons: path.resolve('./node_modules/@blueprintjs/icons'),
blueprint: path.resolve('./node_modules/@blueprintjs/core')
};

以下内容添加为 jest 配置的一部分:

    rootDir: '.',
roots: [
'<rootDir>/__test__/'
],
transformIgnorePatterns: [
'<rootDir>/node_modules/'
],
transform: {
'^.+\\.jsx?$': 'babel-jest'
},
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$',
moduleDirectories: ['node_modules'],
moduleFileExtensions: [
'js',
'jsx',
'json',
'node'
],
moduleNameMapper: {
'\\.(css|scss)$': 'identity-obj-proxy',
blueprintIcons: '<rootDir>/node_modules/@blueprintjs/core'
blueprint: '<rootDir>/node_modules/@blueprintjs/core'
},
snapshotSerializers: ['enzyme-to-json/serializer']
};

这是我的组件:

import React, { Component } from 'react';
import Icon from 'blueprint';
import IconNames from 'blueprintIcons';
class Foo extends Component {
render() {
return (
<div>
<p>Hello Foo</p>
<Icon icon={IconNames.HOME} iconSize={Icon.SIZE_LARGE}/>
</div>
);
}
}
export default Foo;

这是我的 foo.test.js

import React from 'react';
import Foo from '../../src/Components/Foo';
import Adapter from 'enzyme-adapter-react-16';
import Enzyme, { mount, shallow } from 'enzyme';

describe('Reviews component', () => {
it('render component when loading in progress', () => {
const mountedComponent = mount(<Foo />);
});
});

当我尝试测试该组件时,测试失败

TypeError: Cannot read property 'HOME' of undefined at IconNames.HOME

这是我的 package.json 中指定的一些包

"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.1",
"babel-loader": "7.1.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^23.1.0",
"jest-html-reporter": "^2.3.0",
"@blueprintjs/core": "^2.3.1",
"react": "16.2.0"

我使用的是react 16.2.0

我尝试 mock 它,但不起作用(也许我做得不正确),但这是我正在使用的代码:

jest.mock('@blueprintjs/icons', () => (
{ IconNames: {HOME: 'home' }}));

最佳答案

对我来说,以下解决方案有效:

在 Jest 配置中:

moduleNameMapper: {
'^blueprint': '<rootDir>/node_modules/@blueprintjs/core',
'^@blueprintjs/(.*)$': '<rootDir>/node_modules/@blueprintjs/$1'
}

其余一切保持不变。

关于reactjs - 使用 jest 进行 React 测试不支持 webpack 别名中的 moduleNameMapper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55266375/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com