strapi/jest.config.e2e.js
Alexandre Bodin d147015662 Updates after review
- Clean comments
- Ignore all tmp paths with a Regexp
2019-03-13 16:43:05 +01:00

13 lines
281 B
JavaScript

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