From 9494f5aa4dc3dfc2118e127fc8f66c0fe24e5a9f Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 23 Jul 2026 17:09:30 -0400 Subject: [PATCH] test(ito): run npm welcome through Windows shell --- tests/scripts/ito-handoff.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/ito-handoff.test.js b/tests/scripts/ito-handoff.test.js index 102a549e0..349ee5386 100644 --- a/tests/scripts/ito-handoff.test.js +++ b/tests/scripts/ito-handoff.test.js @@ -272,6 +272,7 @@ function main() { const result = spawnSync(npmExecutable, ["run", "welcome"], { cwd: REPO_ROOT, encoding: "utf8", + shell: process.platform === "win32", }) assert.strictEqual(result.status, 0, result.stderr) assert.match(result.stdout, /Itô/)