aboutsummaryrefslogblamecommitdiffstats
path: root/packages/instant/jest.config.js
blob: 29c365835f7ddf21a12e3c90b1fc554000a0d430 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                     
module.exports = {
    roots: ['<rootDir>/test'],
    coverageDirectory: 'coverage',
    transform: {
        '.*.tsx?$': 'ts-jest',
    },
    testRegex: '(/__test__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
    moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
    collectCoverageFrom: ['src/**/*.{ts,tsx}', '!src/index.tsx'],
};