使用Jest测试React组件会出现“无法找到模块”错误

时间:2018-05-30 16:20:17

标签: reactjs react-native jestjs enzyme

我正在尝试使用Jest测试React组件。

组件的代码如下。

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { Text } from 'components';

class App extends PureComponent {

    static propTypes = {
        name: PropTypes.string.isRequired,
        age: PropTypes.number.isRequired,
        displayed: PropTypes.bool,
    };

    static defaultProps = {
        displayed: true
    };

    render = () => {
        if (!this.props.displayed) {
            return null;
        }
        const text = `${ this.props.name } is ${ this.props.age } years old.`
        return (
            <span>
                <Text
                    text={ text }
                />
            </span>
        );
    }
}

export default App;

测试代码就像这样简单:

import React from 'react';
import { mount } from 'enzyme';
import App from './../App';

describe('App', () => {
    let props;
    let mountedApp;
    const app = () => {
        if (!mountedApp) {
            mountedApp = mount(
                <App { ...props } />
            );
        }
        return mountedApp;
    };

    beforeEach(() => {
        props = {
            name: 'John',
            age: 35,
            displayed: undefined
        };
        mountedApp = undefined;
    });

    it('always renders a span', () => {
        const spans = app().find('span');
        expect(spans.length).toBeGreaterThan(0);
    });
});

在我的项目中,我使用了一些常用组件,例如Text Component。 组件的所有路径都在index.js文件中设置。

文件示例代码:

export Button from 'src/Common/Components/Button';
export Text from 'src/Common/Components/Text';
export Breadcrumb from 'src/Common/Components/Breadcrumb';

这是我在package.json文件中使用的Jest配置。

"jest": {
    "setupTestFrameworkScriptFile": "./Common/Components/setupTests.js",
    "moduleFileExtensions": ["js", "jsx", ""],
    "moduleNameMapper": {
      "components(.*)$": "<rootDir>/Common/Static/index.js"
    }
  }

Webpack alias config:

  别名:{       组件:path.resolve(__ dirname,'Common / Static / index.js'),},

我正在通过终端运行'npm test',测试失败并显示以下消息:

Test suite failed to run

    Cannot find module 'src/Common/Components/Button' from 'index.js'

       6 | export Button from 'src/Common/Components/Button';
       7 | export Text from 'src/Common/Components/Text';
    >  8 | export Breadcrumb from 'src/Common/Components/Breadcrumb';
         |                ^

      at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:210:17)
      at Object.<anonymous> (Common/Static/index.js:8:16)

当我删除测试时,所有路径都是正确的,代码运行顺畅。 我猜Jest无法获得index.js中包含的路径 有没有关于如何配置Jest以覆盖此问题的建议?

2 个答案:

答案 0 :(得分:2)

我认为为你的jest配置添加模块路径会做你想要的事情

jest.config.js

module.exports = {
    "modulePaths": [
        "src",
        "test"
    ],
    ...
}

编辑:哦你的jest配置在package.json中,所以应该把它添加到你的jest条目

答案 1 :(得分:0)

这个问题对我来说是发生了,因为该项目在package.json和jest.config.js中都有配置

package.json

"jest": {
    "moduleNameMapper": {
      "^components(.*)$": "<rootDir>/src/js/components$1",
    }
}

jest.config.js

module.exports = {
    testEnvironment: 'jest-environment-jsdom'
};

package.json moduleNameMapper似乎被忽略了。