From 2434eed8fb15a95f43ae60cea229c183c320f31e Mon Sep 17 00:00:00 2001 From: Zachary Goldberg Date: Wed, 31 May 2023 14:57:12 -0700 Subject: [PATCH] fix: use and operatpr instead of semicolon to run unit tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5ecdfd9a8c9..89ee114188c 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "split-e2e-tests": "yarn ts-node ./scripts/split-e2e-tests.ts && git add .circleci/config.yml", "split-e2e-tests-codebuild": "yarn ts-node ./scripts/split-e2e-tests-codebuild.ts", "test-changed": "nx affected --target=test", - "test-ci": "nx run-many --parallel=4 --target=test --all --exclude='@aws-amplify/amplify-provider-awscloudformation' -- --ci --runInBand; nx run-many --target=test --projects='@aws-amplify/amplify-provider-awscloudformation' -- -ci --runInBand", + "test-ci": "nx run-many --parallel=4 --target=test --all --exclude='@aws-amplify/amplify-provider-awscloudformation' -- --ci --runInBand && nx run-many --target=test --projects='@aws-amplify/amplify-provider-awscloudformation' -- -ci --runInBand", "test": "nx run-many --target=test --all -- --runInBand", "update-data-packages": "./scripts/update-data-dependencies.sh && yarn", "update-test-timing-data": "ts-node ./scripts/cci-get-job-metrics.ts && ts-node ./scripts/cci-extract-test-timings-from-job-metrics.ts",