webstorage-decorators/jest.config.js
ztimson 034134a08f
All checks were successful
Build / Build NPM Project (push) Successful in 36s
Build / Tag Version (push) Successful in 7s
Build / Publish (push) Successful in 16s
Updated documentation
2024-01-07 19:11:26 -05:00

17 lines
267 B
JavaScript

module.exports = {
"reporters": ["default", "jest-junit"],
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts)$": "ts-jest"
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts'
],
};