Files
2019-08-04 13:27:55 +02:00

9 lines
173 B
JavaScript

const path = require('path');
module.exports = {
transform: {
'^.+\\.tsx?$': 'ts-jest'
},
roots: [path.join(__dirname, 'tests')],
testMatch: ['**/*.test.{ts,tsx}']
};