Fix karma webpack config

pull/21833/head
Marcel 2018-10-09 17:40:25 +02:00 committed by GitHub
parent 10a3f08ee2
commit f5012d87cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -23,8 +23,6 @@ var fs = require('fs');
//
var testFile = process.env.KARMA_TEST_FILE || 'test/all-tests.js';
// make sure we're flagged as development to avoid wasting time optimising
webpack_config.mode = 'development';
process.env.PHANTOMJS_BIN = 'node_modules/.bin/phantomjs';
@ -205,7 +203,10 @@ module.exports = function (config) {
root: [
path.resolve('./test'),
],
modules: "node_modules",
modules: [
path.resolve('./test'),
"node_modules"
],
},
devtool: 'inline-source-map',
externals: {
@ -213,6 +214,8 @@ module.exports = function (config) {
// (the 'commonjs' here means it will output a 'require')
"electron": "commonjs electron",
},
// make sure we're flagged as development to avoid wasting time optimising
mode: 'development',
},
webpackMiddleware: {