tfriem/svn-helper

View on GitHub
jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  collectCoverageFrom: [
    'src/**/*.{js,ts}',
    '!**/node_modules/**',
    '!**/test/**',
    '!src/index.ts'
  ],
  reporters: ['default', 'jest-junit'],
  globals: {
    'ts-jest': {
      isolatedModules: true
    }
  }
}