jest.config.js 218 B

1234567
  1. module.exports = {
  2. preset: 'ts-jest',
  3. testEnvironment: 'node',
  4. testPathIgnorePatterns: ['<rootDir>/test/fixtures'],
  5. coveragePathIgnorePatterns: ['<rootDir>/test/'],
  6. setupFilesAfterEnv: ['./jest.setup.js']
  7. };