jest.config.js 184 B

123456
  1. const { defaults } = require('jest-config')
  2. module.exports = {
  3. testMatch: ['**/tests/**/*.[jt]s?(x)'],
  4. testPathIgnorePatterns: [...defaults.testPathIgnorePatterns, '.history'],
  5. }