strapi/jest.config.js

15 lines
308 B
JavaScript
Raw Normal View History

2018-06-12 17:41:28 +02:00
module.exports = {
name: 'setup',
displayName: 'Setup',
2018-06-13 16:16:46 +02:00
testMatch: ['**/test/?(*.)+(spec|test).js'],
2018-06-12 17:41:28 +02:00
testPathIgnorePatterns: [
'<rootDir>/packages/',
],
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/'
]
};