Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
284 B

  1. module.exports = {
  2. preset: 'ts-jest',
  3. testEnvironment: 'node',
  4. globals: {
  5. 'ts-jest': {
  6. tsconfig: '<rootDir>/tsconfig.test.json',
  7. },
  8. },
  9. collectCoverageFrom: [
  10. 'src/modules/**/*.{js,ts}',
  11. 'src/utils/**/*.{js,ts}',
  12. ],
  13. setupFilesAfterEnv: ['<rootDir>/jest.setup.ts']
  14. };