hedgedoc/jest-e2e.json
Philip Molares de54bca9c4
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>
2021-03-31 23:26:38 +02:00

17 lines
297 B
JSON

{
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.e2e-spec.{ts,js}"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage-e2e",
"testTimeout": 10000
}