hedgedoc/jest-e2e.json
David Mehren 9b91f32bda ci: enable jest GHA reporter
Signed-off-by: David Mehren <git@herrmehren.de>
2022-05-08 20:53:31 +02:00

23 lines
425 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,
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
},
"reporters": ["default", "github-actions"]
}