All checks were successful
continuous-integration/drone/push Build is passing
20 lines
383 B
JavaScript
20 lines
383 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
collectCoverage: true,
|
|
roots: [
|
|
"<rootDir>/src"
|
|
],
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
|
|
moduleFileExtensions: [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"json",
|
|
"node"
|
|
]
|
|
}; |