strapi/jest.config.e2e.js

14 lines
325 B
JavaScript
Raw Normal View History

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