Files
react-diagrams/jest.config.js
2018-01-04 23:56:48 +02:00

13 lines
287 B
JavaScript

// jest.config.js
module.exports = {
verbose: true,
moduleFileExtensions: ["ts", "tsx", "js", "json"],
transform: {
"^.+\\.(ts|tsx)$": "./tests/helpers/tsx-preprocessor.js",
"^.+\\.(scss)$": "./tests/helpers/scss-preprocessor.js"
},
"testMatch": [
"**/tests/*\.test\.*"
]
};