strapi/jest.config.js
2018-06-13 15:31:33 +02:00

15 lines
300 B
JavaScript

module.exports = {
name: 'setup',
displayName: 'Setup',
testMatch: ['test/?(*.)+(test).js'],
testPathIgnorePatterns: [
'<rootDir>/packages/',
],
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/'
]
};