Files
owl/jest.config.js
T
2019-04-17 10:58:54 +02:00

10 lines
248 B
JavaScript

module.exports = {
roots: ["<rootDir>/src", "<rootDir>/tests"],
transform: {
"^.+\\.ts?$": "ts-jest"
},
verbose: false,
testRegex: "(/tests/.*(test|spec))\\.ts?$",
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
};