diff --git a/.gitignore b/.gitignore index aa727b817..55743c2cb 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ package-lock.json .env.test.local .env.production.local .eslintcache +.huskyrc # Created environment files public/env-config.js diff --git a/package.json b/package.json index 7974dd9ed..564eaa83e 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ "serve-local": "ws --spa index.html -d build -p 3001 --rewrite '/api/(.*) -> http://localhost:3000/$1' --rewrite '/auth/(.*) -> http://localhost:3030/auth/$1'", "build-and-serve": "yarn run build && yarn run serve", "update-runtime-env": "ts-node -P ./scripts/tsconfig.json --files scripts/update-runtime-env.ts", - "test": "TEST=true yarn run update-runtime-env && DEBUG_PRINT_LIMIT=50000 react-scripts test --runInBand", - "testCI": "TEST=true yarn run update-runtime-env && CI=TRUE DEBUG_PRINT_LIMIT=50000 react-scripts test --runInBand", + "test": "TEST=true yarn run update-runtime-env && DEBUG_PRINT_LIMIT=50000 react-scripts test", + "testCI": "TEST=true yarn run update-runtime-env && CI=TRUE DEBUG_PRINT_LIMIT=50000 react-scripts test", "eject": "react-scripts eject", "type-check": "tsc --pretty --noEmit", "format": "prettier --write",