strapi/jest.config.e2e.js

19 lines
503 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-07-19 17:40:37 +02:00
testPathIgnorePatterns: [
'<rootDir>/packages/plugins/graphql',
'<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
};