strapi/jest.config.e2e.js

16 lines
452 B
JavaScript
Raw Normal View History

2019-03-06 19:19:33 +01:00
module.exports = {
name: 'API integration tests',
2019-05-06 13:36:33 +02:00
testMatch: ['**/?(*.)+(spec|test).e2e.js'],
2019-03-06 19:19:33 +01:00
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/test/jest2e2.setup.js'],
2021-09-23 17:25:25 +02:00
testPathIgnorePatterns: ['<rootDir>/packages/core/database.old'],
2019-03-06 19:19:33 +01:00
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/',
],
2019-04-08 19:03:55 +02:00
transform: {},
modulePathIgnorePatterns: ['.cache'],
2019-03-06 19:19:33 +01:00
};