Files
owl/jest.config.js
T

9 lines
232 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"
},
testRegex: "(/tests/.*|(\\.|/)(test|spec))\\.(ts|js)x?$",
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
};