mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
e68ddd8fdc
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>
18 lines
320 B
JSON
18 lines
320 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,
|
|
"maxConcurrency": 1
|
|
}
|