skolplattformen-backup/jest.config.js

10 lines
223 B
JavaScript
Raw Normal View History

2020-12-19 12:37:45 +00:00
module.exports = {
2020-12-20 19:58:52 +00:00
preset: 'ts-jest',
testEnvironment: 'jsdom',
2020-12-19 12:37:45 +00:00
transform: {
'.(ts|tsx)': 'ts-jest'
2020-12-19 12:37:45 +00:00
},
2020-12-20 19:58:52 +00:00
testRegex: '(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$',
moduleFileExtensions: ["ts", "tsx", "js"]
2020-12-19 12:37:45 +00:00
}