我想用mocha来测试我的电子应用程序。我正在使用以下加载器来处理我的测试:
{
test: /(\.js)$/,
loaders: ['mocha', 'babel'],
include: [path.join(__dirname, 'tests')]
}
而且,我的target
设置为electron
。我的主应用程序包构建得很好。但是,当我构建测试包时,我收到此错误:
ERROR in ./tests/index.js
Module build failed: Error: Unsupported target environment electron
at Object.module.exports.pitch (/Users/mparrott/dev/architect-editor/node_modules/mocha-loader/index.js:33:9)
确实,mocha source似乎不支持electron
。
我应该如何使用mocha来测试我的电子应用?