strapi/jest.config.js

14 lines
318 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'],
2019-04-08 19:03:55 +02:00
testPathIgnorePatterns: ['<rootDir>/packages/'],
2018-06-12 17:41:28 +02:00
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
2019-04-08 19:03:55 +02:00
'<rootDir>/test/',
],
transform: {},
2018-06-12 17:41:28 +02:00
};