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.
 
 
 

13 lines
212 B

  1. module.exports = {
  2. preset: 'ts-jest',
  3. testEnvironment: 'jsdom',
  4. globals: {
  5. 'ts-jest': {
  6. tsconfig: '<rootDir>/tsconfig.test.json',
  7. },
  8. },
  9. collectCoverageFrom: [
  10. 'src/components/**/*.{jsx,tsx}',
  11. ]
  12. };