Update karma config for webpack 4

This commit is contained in:
Marcel 2018-10-09 17:32:39 +02:00 committed by GitHub
parent 20ef16ad00
commit 10a3f08ee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,9 @@ 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';
function fileExists(name) {
@ -160,10 +163,9 @@ module.exports = function (config) {
webpack: {
module: {
loaders: [
{ test: /\.json$/, loader: "json" },
rules: [
{
test: /\.js$/, loader: "babel",
test: /\.js$/, loader: "babel-loader",
include: [path.resolve('./src'),
path.resolve('./test'),
]
@ -203,6 +205,7 @@ module.exports = function (config) {
root: [
path.resolve('./test'),
],
modules: "node_modules",
},
devtool: 'inline-source-map',
externals: {