From dfadd6664bd0c9131ac44d1763c28f511d43ed50 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Sun, 7 Sep 2025 07:39:02 +0800 Subject: [PATCH] :bug: Simplify logic for help --- tests/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.js b/tests/index.js index 186582d..c4894dd 100644 --- a/tests/index.js +++ b/tests/index.js @@ -169,7 +169,7 @@ class PakeTestRunner { await this.runTest( "Help Command", () => { - const output = execSync(`node "${config.CLI_PATH}" --help`, { + const output = execSync(`node "${config.CLI_PATH}"`, { encoding: "utf8", timeout: 3000, });