-
-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functional tests should intercept the output #47
Comments
+1 these are coming from |
Lyrkan
added a commit
to Lyrkan/webpack-encore
that referenced
this issue
Aug 18, 2017
weaverryan
added a commit
that referenced
this issue
Sep 2, 2017
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)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The output of the command running in functional tests should not be sent to the test runner output.
The text was updated successfully, but these errors were encountered: