From adccd6383143cca2ccd9883a04d5900ecac51178 Mon Sep 17 00:00:00 2001 From: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> Date: Thu, 13 Aug 2026 13:23:42 -0300 Subject: [PATCH] test(pack): expect parseEnvValue.mjs in the missing-artifact-paths fixture The prior commit on this branch registered bin/cli/utils/parseEnvValue.mjs in PACK_ARTIFACT_REQUIRED_PATHS but the "findMissingArtifactPaths flags missing root runtime files in the tarball" test still hardcoded the old expected list, so it never accounted for the new required path being absent from the simulated tarball. Add it in its alphabetical slot. --- tests/unit/pack-artifact-policy.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/pack-artifact-policy.test.ts b/tests/unit/pack-artifact-policy.test.ts index d44f0c31e8..a7e73bb656 100644 --- a/tests/unit/pack-artifact-policy.test.ts +++ b/tests/unit/pack-artifact-policy.test.ts @@ -201,6 +201,7 @@ test("findMissingArtifactPaths flags missing root runtime files in the tarball", "bin/cli/data-dir.mjs", "bin/cli/program.mjs", "bin/cli/utils/ensureAndroidCacheDir.mjs", + "bin/cli/utils/parseEnvValue.mjs", "bin/cli/utils/storageKeyProvision.mjs", "bin/cli/utils/versionFastPath.mjs", "bin/mcp-server.mjs",