I'm developing a web app at work in React/Redux/Webpack and am now starting to integrate testing with Mocha.
I followed the instructions for writing tests in the Redux documentation, but now I have run into an issue with my webpack aliases.
For example, take a look at the imports section of this test for one of my action creators:
import expect from 'expect' // resolves without an issue
import * as actions from 'actions/app'; // can't resolve this alias
import * as types from 'constants/actionTypes'; // can't resolve this alias
describe('Actions', () => {
describe('app',() => {
it('should create an action with a successful connection', () => {
const host = '***************',
port = ****,
db = '******',
user = '*********',
pass = '******';
const action = actions.createConnection(host, port, db, user, pass);
const expectedAction = {
type: types.CREATE_CONNECTION,
status: 'success',
payload: { host, port, database, username }
};
expect(action).toEqual(expectedAction);
});
});
});
As the comments suggest, mocha isn't able to resolve my import statements when they are referencing aliased dependencies.
Because I'm still new to webpack, here's my webpack.config.js
:
module.exports = {
devtool: 'eval-source-map',
entry: [
'webpack-hot-middleware/client',
'./src/index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
resolve: {
extensions : ['', '.js', '.jsx'],
alias: {
actions: path.resolve(__dirname, 'src', 'actions'),
constants: path.resolve(__dirname, 'src', 'constants'),
/* more aliases */
}
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [{
test: /\.js$/,
loaders: ['babel'],
exclude: /node_modules/,
include: __dirname
}]
}
};
Also, I'm using the command npm test
to run mocha, here's the script I'm using in my package.json
.
{
"scripts": {
"test": "mocha ./src/**/test/spec.js --compilers js:babel-core/register --recursive"
}
}
So here's where I get stuck. I need to include the aliases from webpack into mocha when it runs.
I assume you would have
--require babel-register
in yourmocha.opts
. You can use babel module resolver plugin https://github.com/tleunen/babel-plugin-module-resolver. This allows you to set alias in .babelrc, similar to your webpack alias:To keep aliases in one place like
config/webpack.common.js
then install babel-plugin-webpack-alias
then in
.babelrc
put :Okay so I realized that everything I was aliasing was in the
src/
directory, so I simply needed to modify mynpm run test
script.Probably won't work for everyone, but that solved my issue.
I think I solved this problem. You should use 2 package: mock-require and proxyquire.
Assuming you have a js file like this:
app.js
And your test code should write like this:
app.test.js
files tree
First mock the alias path by mock-require in before function, and mock your test object by proxyquire in beforeEach function.
Danny's answer is great. But my situation is a little bit different. I used webpack's
resolve.alias
to use all the files undersrc
folder.and use a special prefix for my own modules like this:
To test code like this I have to add a command
ln -sf src test/alias/-
before mocha test and use theNODE_PATH=./test/alias
trick Danny camp up with. So the final script would be like this:PS:
I used
-
because beautifal charactors like@
or~
are not safe enough. I found the answer for safe characters hereI had the exact same issue. It seems impossible to use webpack aliases in require.js or in node's require.
I ended up using mock-require in the unit tests and just replacing the paths manually, like this:
mock-require is a good tool, because most likely you'd like to mock most of your dependencies anyway instead of using the actual scripts from
src
.