Ferdi Koomen a7deb5c12d - Added correct precompile using handlebars and custom plugin
- Updated tests to provide dummy templates out of the box
2020-05-24 11:19:40 +02:00

14 lines
327 B
JavaScript

module.exports = {
testRegex: '\\.spec\\.(ts|js)$',
testEnvironment: 'node',
moduleNameMapper: {
'\\.hbs$': '<rootDir>/src/templates/__mocks__/index.js',
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts',
'!src/templates/**',
'!**/node_modules/**',
],
};