You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #143 Intercept Webpack output during functional tests (Lyrkan)
This PR was merged into the master branch.
Discussion
----------
Intercept Webpack output during functional tests
This PR replaces `process.stdout.write` by an empty function when running webpack in each functional test (fixes#47).
It also sets the `silent` option of the Zombie.js browser to true to avoid displaying things like:
```
Download the Vue Devtools extension for a better development experience:
https://github.com/vuejs/vue-devtools
You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
See more tips at https://vuejs.org/guide/deployment.html
```
The only "noisy" message left should be `DeprecationWarning: Chunk.modules is deprecated. Use Chunk.getNumberOfModules/mapModules/forEachModule/containsModule instead` since it is sent to stderr (should be fixed when alexindigo/webpack-chunk-hash#9 is released).
Commits
-------
a74869b Intercept output during functional tests (fixes#47)
0 commit comments