Files
react-diagrams/jest.config.js
2017-11-21 00:39:19 +02:00

12 lines
286 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\.*"
]
};