strapi/jest.config.js
2018-06-13 16:16:46 +02:00

15 lines
308 B
JavaScript

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