From cdae5b0f7d5b572c9718b4b71a608012fe2a33ee Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Thu, 31 Mar 2022 11:45:07 +0200 Subject: [PATCH] have no plugins as default --- packages/wdio-cli/src/constants.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/wdio-cli/src/constants.ts b/packages/wdio-cli/src/constants.ts index 0d806522971..7e6b8afdd4f 100644 --- a/packages/wdio-cli/src/constants.ts +++ b/packages/wdio-cli/src/constants.ts @@ -352,7 +352,8 @@ export const QUESTIONNAIRE = [{ type: 'checkbox', name: 'plugins', message: 'Do you want to add a plugin to your test setup?', - choices: SUPPORTED_PACKAGES.plugin + choices: SUPPORTED_PACKAGES.plugin, + default: [] }, { type: 'checkbox', name: 'services',