Frontend: Less verbose output for JS unit tests (no webpack debug info)

This commit is contained in:
Michael Mayer 2019-06-03 23:44:48 +02:00
parent 38b9889ef2
commit a5888f9fe2

View File

@ -5,6 +5,12 @@ process.env.CHROME_BIN = findChrome();
module.exports = (config) => {
config.set({
logLevel: config.LOG_INFO,
webpackMiddleware: {
stats: "errors-only"
},
frameworks: ["mocha"],
browsers: ["LocalChrome"],
@ -41,7 +47,7 @@ module.exports = (config) => {
path.join(__dirname, "tests/unit"),
],
alias: {
vue: "vue/dist/vue.js",
vue: "vue/dist/vue.min.js",
},
},
module: {