E2EConfig: Remove maxConcurrency

This is not necessary as it only effects `it.concurrent` test and we currently don't use those.

See https://jestjs.io/docs/configuration#maxconcurrency-number

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-03-31 23:26:38 +02:00 committed by David Mehren
parent de9c219cdf
commit de54bca9c4
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

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