diff --git a/packages/webpack-cli/README.md b/packages/webpack-cli/README.md index cc2efc2e11e..f0c22ff18ab 100644 --- a/packages/webpack-cli/README.md +++ b/packages/webpack-cli/README.md @@ -56,6 +56,7 @@ Options -v, --version Get current version --node-args string[] NodeJS flags --stats string It instructs webpack on how to treat the stats + --no-stats Disables stats output --verbose It tells webpack to output all the information ``` diff --git a/test/no-stats/with-config/no-stats-with-config.test.js b/test/no-stats/with-config/no-stats-with-config.test.js index 8d46a569fd0..99dc73dd87d 100644 --- a/test/no-stats/with-config/no-stats-with-config.test.js +++ b/test/no-stats/with-config/no-stats-with-config.test.js @@ -5,7 +5,7 @@ const { run } = require('../../utils/test-utils'); const { version } = require('webpack'); describe('stats flag', () => { - it(`should use stats detailed as defined in webpack config`, () => { + it(`should use stats 'detailed' as defined in webpack config`, () => { const { stderr, stdout } = run(__dirname, []); expect(stderr).toBeFalsy(); @@ -16,7 +16,7 @@ describe('stats flag', () => { } }); - it(`should use --no-stats and override value config`, () => { + it(`should use --no-stats and override value in config`, () => { const { stderr, stdout } = run(__dirname, ['--no-stats']); expect(stderr).toBeFalsy();