From 27feaaac4b45da5164e9a574c74c03c9f8a4a0f4 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 4 Aug 2021 14:53:07 +1000 Subject: [PATCH] Revert "Run tests in parallel" This reverts commit b8e7079b67a4b1783a6b8215c8fe1f118a4de405. --- examples/eth-dm/package.json | 2 +- examples/web-chat/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/eth-dm/package.json b/examples/eth-dm/package.json index bf99fff6cc..405f819d9d 100644 --- a/examples/eth-dm/package.json +++ b/examples/eth-dm/package.json @@ -28,7 +28,7 @@ "build:react": "react-scripts build", "eject": "react-scripts eject", "fix": "run-s fix:*", - "test": "npm-run-all build --parallel test:*", + "test": "run-s build test:*", "test:lint": "eslint src --ext .ts --ext .tsx", "test:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --list-different", "test:spelling": "cspell \"{README.md,src/**/*.{ts,tsx},public/**/*.html}\" -c ../../.cspell.json", diff --git a/examples/web-chat/package.json b/examples/web-chat/package.json index c657513661..180eb49ea1 100644 --- a/examples/web-chat/package.json +++ b/examples/web-chat/package.json @@ -32,7 +32,7 @@ "test:unit": "react-scripts test", "eject": "react-scripts eject", "fix": "run-s fix:*", - "test": "npm-run-all build --parallel test:*", + "test": "run-s build test:*", "test:lint": "eslint src --ext .ts --ext .tsx", "test:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --list-different", "test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.{ts,tsx},public/**/*.html}\" -c ../../.cspell.json",