From b227d40393dda4131b72897e9344bd4c0f51c023 Mon Sep 17 00:00:00 2001 From: Marcelo Shima Date: Wed, 11 Sep 2024 09:18:39 -0300 Subject: [PATCH] run prepareTemporaryDir before getting help content --- test/support/tests.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/support/tests.js b/test/support/tests.js index ce63ee9f02f..87770f1c661 100644 --- a/test/support/tests.js +++ b/test/support/tests.js @@ -21,6 +21,7 @@ const { } = PRIORITY_NAMES; export const getCommandHelpOutput = async command => { + await helpers.prepareTemporaryDir(); const program = await buildJHipster(); const cmd = command ? program.commands.find(cmd => cmd.name() === command) : program; if (!cmd) {