使用Enzyme和Mocha测试我的React项目时遇到了很多麻烦。我有这样的测试:
import React from 'react';
import { expect } from 'chai';
import { shallow } from 'enzyme';
import { ChipInput} from '../client/components/Chips';
describe('<ChipInput />', _ => {
it('rocks', done => {
done();
});
});
当导入ChipInput
时,该文件会导入具有绝对路径的内容,例如/lib/collections/tags
,然后Mocha错误,因为它显然只是相对路径。我如何使这个工作?
编辑:
实际错误:
Error: Cannot find module '/lib/collections/tags'
这是因为/tests/ChipInput-test.js
从ChipInput
导入/client/components/Chips/index.js
组件,其中包含以下行:
import React from 'react';
import {
MapsLocalOffer as TagIcon,
ImageRemoveRedEye as InsightIcon,
EditorInsertChart as TestIcon,
SocialPerson as UserIcon,
} from 'material-ui/svg-icons';
import { Tag } from '/lib/collections/tags'; // error thrown here
import { Insight } from '/lib/collections/insights';
// import { Test } from '/lib/collections/tests';
import Chip from './Chip';
import ChipDisplay from './ChipDisplay';
import ChipInput from './ChipInput';
import * as chipTypes from './chip-types';
答案 0 :(得分:2)
这是解决方案,简单明了!
https://github.com/mantrajs/babel-root-slash-import
基本上,安装说包:
npm install babel-root-slash-import --save-dev
将插件添加到.babelrc
:
{
"plugins": [
"babel-root-slash-import"
]
}
这很好。
答案 1 :(得分:1)
对于任何从谷歌打到这里的人来说,虽然ffxsam的答案可行,但有很多方法可以实现这一目标。节点的要求允许通过环境变量或以编程方式设置基数,允许简单的绝对路径不需要前导斜杠(require("my/module");
vs require("/my/module");
)。
我使用gulp作为taskrunner,所以我首选的技巧是使用app-module-path
在我的gulp文件的顶部执行以下操作(这可以在任何地方使用,只要你没有遇到任何绝对的require
s):
require('babel-core/register'); //for mocha to use es6
require('app-module-path').addPath(__dirname + '/src'); //set root path
//I also use webpack to pull in other extensions, so I
//want mocha to noop out on them
require.extensions['.css'] = _.noop;
require.extensions['.scss'] = _.noop;
require.extensions['.png'] = _.noop;
require.extensions['.jpg'] = _.noop;
require.extensions['.jpeg'] = _.noop;
require.extensions['.gif'] = _.noop;
要获得更完整的纲要,请通过github用户branneman查看这个要点:https://gist.github.com/branneman/8048520
答案 2 :(得分:1)
这已经有一段时间了,但是我想在这里分享我的解决方案,以防万一,上述所有解决方案在您的特定情况下都不起作用。我一直在寻找解决我们的单元测试失败的解决方案,该测试失败:“错误:找不到模块'components / shared / xyz',我们的'components'文件夹位于'client / src'文件夹下,因此我想出了以下解决方案对我们有用。
npm install babel-plugin-module-resolver --save-dev
{
'plugins': [
'babel-plugin-module-resolver',
{ 'root': ['client/src'] }
]
}