webpack的mocha-loader
提示: 当需要在命令行输入"!"时, 你需要在其前面插入 \
将其转义。
webpack-dev-server 'mocha!./my-client-tests.js' --options webpackOptions.js
enhanced-require 'mocha!./my-server-tests.js'
module.exports = {
entry: './entry-file.js',
output: {
path: __dirname,
filename: 'bundle.js'
}
}
/*与其他loader配合需要的额外配置 (polyfills, ...)*/
const context = require.context(/*目录*/'mocha-loader!./tests', /*循环*/true, /*符合条件的文件*//_test.js$/);
context.keys().forEach(context);
MIT (http://www.opensource.org/licenses/mit-license.php)