Files
owl/jest.config.js
T

9 lines
218 B
JavaScript
Raw Normal View History

2019-01-16 11:28:05 +01:00
module.exports = {
2019-01-23 14:28:41 +01:00
roots: ["<rootDir>/web/static"],
2019-01-16 11:28:05 +01:00
transform: {
"^.+\\.ts?$": "ts-jest"
},
2019-01-29 10:46:01 +01:00
testRegex: "(/tests/.*(test|spec))\\.ts?$",
2019-01-16 11:28:05 +01:00
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
};