mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
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:
parent
9f746cb05b
commit
de9c219cdf
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue