From 967c44552e4b28803fdf1fbf343e938866c720dc Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Thu, 2 Jul 2026 12:02:34 -0500 Subject: [PATCH] test(core): make command shell test portable (#34972) --- packages/core/test/command.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/test/command.test.ts b/packages/core/test/command.test.ts index 3c8e4322c0..ff327061a9 100644 --- a/packages/core/test/command.test.ts +++ b/packages/core/test/command.test.ts @@ -69,7 +69,7 @@ describe("CommandV2", () => { const command = yield* CommandV2.Service yield* command.transform((editor) => { editor.update("review", (command) => { - command.template = "Output: !`printf command-output`" + command.template = "Output: !`bun -e \"process.stdout.write('command-output')\"`" }) })