From c55e1a74647e01151ee422b18224978859392594 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Thu, 27 Aug 2020 18:34:04 +0200 Subject: [PATCH] refactor: remove redundan '&& cd ../' from scripts --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b2e0df1bd5..f210c65a48 100644 --- a/package.json +++ b/package.json @@ -56,11 +56,11 @@ "serve:client": "cd ./client && npm run serve", "start": "npm-run-all ensure-env -p develop:server serve:client", "test": "npm-run-all -p test:*", - "test:client": "cd ./client && npm test && cd ../", - "test:curriculum": "cd ./curriculum && npm test && cd ../", + "test:client": "cd ./client && npm test", + "test:curriculum": "cd ./curriculum && npm test", "test-curriculum-full-output": "cd ./curriculum && npm run test:full-output", "test:curriculum-js": "jest --rootDir ./curriculum", - "test:server": "cd ./api-server && npm test && cd ../", + "test:server": "cd ./api-server && npm test", "test:tools": "jest ./tools", "test:utils": "jest --rootDir ./utils" },