budge/backend/jest.config.js
2021-11-25 10:58:40 -05:00

14 lines
294 B
JavaScript

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
"timers": "fake",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
testMatch: [
'**/test/**/*.[jt]s?(x)',
'!**/test/coverage/**',
'!**/test/utils/**',
'!**/test/images/**',
],
};