Do not run e2e tests in parallel
This commit is contained in:
parent
e7a97a39a6
commit
e8585eff5c
1 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,13 @@ export default {
|
||||||
testDir: './tests/e2e/',
|
testDir: './tests/e2e/',
|
||||||
testMatch: /.*\.test\.e2e\.js/, // Match any .test.e2e.js files
|
testMatch: /.*\.test\.e2e\.js/, // Match any .test.e2e.js files
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Only run one test at a time, running multiple could lead to a inconsistent
|
||||||
|
* database state.
|
||||||
|
*/
|
||||||
|
fullyParallel: false,
|
||||||
|
workers: 1,
|
||||||
|
|
||||||
/* Maximum time one test can run for. */
|
/* Maximum time one test can run for. */
|
||||||
timeout: 30 * 1000,
|
timeout: 30 * 1000,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue