From 5ce0df90c3bc39c0d2e5e275eb90a03443db6732 Mon Sep 17 00:00:00 2001 From: khalilou88 Date: Thu, 7 Mar 2024 13:10:35 +0100 Subject: [PATCH] test: fix e2e tests for windows --- tools/scripts/start-local-registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/start-local-registry.ts b/tools/scripts/start-local-registry.ts index dd77e20cd..03a1b4746 100644 --- a/tools/scripts/start-local-registry.ts +++ b/tools/scripts/start-local-registry.ts @@ -20,6 +20,6 @@ export default async () => { execFileSync( nx, ['run-many', '--targets', 'publish', '--ver', '0.0.0-e2e', '--tag', 'e2e'], - { env: process.env, stdio: 'inherit' }, + { env: process.env, stdio: 'inherit', shell: true }, ); };