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 7fb7b3cd10
commit e68ddd8fdc
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

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