PackageJson: Add --runInBand to test:e2e scripts

This ensures the e2e tests run in serially and never concurrently.

See https://jestjs.io/docs/cli#--runinband

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-03-31 23:23:15 +02:00 committed by David Mehren
parent 9f746cb05b
commit de9c219cdf
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -20,8 +20,8 @@
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config jest-e2e.json",
"test:e2e:cov": "jest --config jest-e2e.json --coverage"
"test:e2e": "jest --config jest-e2e.json --runInBand",
"test:e2e:cov": "jest --config jest-e2e.json --coverage --runInBand"
},
"dependencies": {
"@azure/storage-blob": "12.5.0",