mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 19:53:59 -05:00
Merge pull request #1826 from hedgedoc/enhancement/concurrent_e2e_tests
This commit is contained in:
commit
1601f4b3a8
2 changed files with 4 additions and 3 deletions
|
@ -19,8 +19,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 --runInBand",
|
||||
"test:e2e:cov": "jest --config jest-e2e.json --coverage --runInBand",
|
||||
"test:e2e": "jest --config jest-e2e.json",
|
||||
"test:e2e:cov": "jest --config jest-e2e.json --coverage",
|
||||
"seed": "ts-node src/seed.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -9,7 +9,8 @@ export default registerAs('mediaConfig', () => ({
|
|||
backend: {
|
||||
use: 'filesystem',
|
||||
filesystem: {
|
||||
uploadPath: 'test_uploads',
|
||||
uploadPath:
|
||||
'test_uploads' + Math.floor(Math.random() * 100000).toString(),
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
|
Loading…
Reference in a new issue