From 43f6c649c0d5366b1de33bd50c779589b46efe0a Mon Sep 17 00:00:00 2001 From: 343dev <343dev@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:25:32 +0700 Subject: [PATCH] Fix CLI path handling in tests --- tests/cli.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli.test.js b/tests/cli.test.js index 3895210..b89f119 100644 --- a/tests/cli.test.js +++ b/tests/cli.test.js @@ -485,7 +485,7 @@ function calculateDirectorySize(directoryPath) { } function runCliWithParameters(parameters) { - return execSync(`node ${cliPath} ${parameters}`).toString(); + return execSync(`node "${cliPath}" ${parameters}`).toString(); } function grepTotalRatio(string) {