From d34d6e3c482ced944c443f21c21a827f977d0306 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Tue, 5 Nov 2024 09:47:15 +0530 Subject: [PATCH] chore: fix default value --- test/utils/webpack-cli-test-plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/webpack-cli-test-plugin.js b/test/utils/webpack-cli-test-plugin.js index ec01b1bd2a2..8646632c99a 100644 --- a/test/utils/webpack-cli-test-plugin.js +++ b/test/utils/webpack-cli-test-plugin.js @@ -1,6 +1,6 @@ class WebpackCLITestPlugin { constructor(configOptions, pluginOptions = {}) { - const { showAll, showHooks, envVariables } = pluginOptions; + const { showAll = true, showHooks, envVariables } = pluginOptions; this.opts = configOptions; this.showAll = showAll; this.showHooks = showHooks;