mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 09:00:19 +00:00
16 lines
452 B
JavaScript
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'],
|
|
};
|