hedgedoc/jest-e2e.json
David Mehren d385fb408d test: configure ts-jest in transform
Signed-off-by: David Mehren <git@herrmehren.de>
2022-09-11 16:56:32 +02:00

23 lines
415 B
JSON

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