webstorage-decorators/jest.config.js

17 lines
267 B
JavaScript
Raw Normal View History

2021-01-28 10:24:11 -05:00
module.exports = {
2023-03-20 16:42:32 -04:00
"reporters": ["default", "jest-junit"],
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts)$": "ts-jest"
},
collectCoverageFrom: [
2024-01-07 19:11:26 -05:00
'src/**/*.ts',
'!src/**/*.d.ts'
2023-03-20 16:42:32 -04:00
],
};