From a03a5ec486e2079bb8551976f919db6113a14033 Mon Sep 17 00:00:00 2001 From: Laurence de Bruxelles Date: Tue, 27 Sep 2022 16:49:05 +0100 Subject: [PATCH] Fix quoting for cmd.exe --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 19b6e6773c..b6cbbd9dce 100644 --- a/package.json +++ b/package.json @@ -31,8 +31,8 @@ "rapidtest": "jest --bail", "cypress:open": "cypress open", "test:heroku": "echo 'test:heroku' needs to be implemented", - "test:acceptance": "cross-env KIT_TEST_DIR=tmp/test-prototype-package start-server-and-test 'node cypress/scripts/run-starter-prototype' 3000 'cypress run'", - "test:acceptance:open": "cross-env KIT_TEST_DIR=tmp/test-prototype-package start-server-and-test 'node cypress/scripts/run-starter-prototype' 3000 'cypress open'", + "test:acceptance": "cross-env KIT_TEST_DIR=tmp/test-prototype-package start-server-and-test \"node cypress/scripts/run-starter-prototype\" 3000 \"cypress run\"", + "test:acceptance:open": "cross-env KIT_TEST_DIR=tmp/test-prototype-package start-server-and-test \"node cypress/scripts/run-starter-prototype\" 3000 \"cypress open\"", "test:smoke": "cypress run --spec \"cypress/integration/0-smoke-tests/*\"", "test:unit": "jest --detectOpenHandles lib bin", "test:integration": "cross-env IS_INTEGRATION_TEST=true jest --detectOpenHandles --testTimeout=30000 __tests__",