emanuelelongo/fetchetera

View on GitHub
jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
    "roots": [
        "<rootDir>/src"
    ],
    "transform": {
        "^.+\\.tsx?$": "ts-jest"
    },
    testMatch: [
        '/**/__tests__/*.test.ts'
    ],
    "collectCoverageFrom": [
        "src/**/{!(log),}.ts"
    ]
}