strapi/jest.config.e2e.js
2021-09-23 17:25:25 +02:00

16 lines
452 B
JavaScript

module.exports = {
name: 'API integration tests',
testMatch: ['**/?(*.)+(spec|test).e2e.js'],
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/test/jest2e2.setup.js'],
testPathIgnorePatterns: ['<rootDir>/packages/core/database.old'],
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/',
],
transform: {},
modulePathIgnorePatterns: ['.cache'],
};