E2E tests: Increase timeout & set concurrency to 1

For some reason Jest sometimes times out when running in GitHub Actions.
This tries to mitigate that error.

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-01-06 19:16:31 +01:00
parent 87f15d6488
commit 672d8e6bbb
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -12,5 +12,7 @@
"transform": { "transform": {
"^.+\\.(t|j)s$": "ts-jest" "^.+\\.(t|j)s$": "ts-jest"
}, },
"coverageDirectory": "./coverage-e2e" "coverageDirectory": "./coverage-e2e",
"testTimeout": 10000,
"maxConcurrency": 1
} }