Frontend: Less verbose output for JS unit tests (no webpack debug info)
This commit is contained in:
parent
38b9889ef2
commit
a5888f9fe2
1 changed files with 7 additions and 1 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue