test: run sequentially (#42132)
Running tests in parallel while outputting to a single console can result in confusing output. Results can get interleaved and, more importantly, if one test fails, the rest get killed. This can create unpredictable error messages.
This commit is contained in:
committed by
GitHub
parent
79e799feb5
commit
07f324b278
@ -75,7 +75,7 @@
|
||||
"start-ci": "npm-run-all ensure-env -p start:server serve:client",
|
||||
"start:server": "cd ./api-server && npm start",
|
||||
"storybook": "cd ./tools/ui-components && npm run storybook",
|
||||
"test": "npm-run-all ensure-env build:curriculum build-workers -p test:*",
|
||||
"test": "run-s ensure-env build:curriculum build-workers test:*",
|
||||
"test-curriculum-full-output": "cd ./curriculum && npm run test:full-output",
|
||||
"test:client": "cd ./client && npm test",
|
||||
"test:curriculum": "cd ./curriculum && npm test",
|
||||
|
Reference in New Issue
Block a user