mirror of
https://github.com/strapi/strapi.git
synced 2025-07-03 07:05:06 +00:00
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
module.exports = {
|
|
name: 'API integration tests',
|
|
testMatch: ['**/?(*.)+(spec|test).e2e.js'],
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: ['<rootDir>/test/jest2e2.setup.js'],
|
|
coveragePathIgnorePatterns: [
|
|
'<rootDir>/dist/',
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/out-tsc/',
|
|
'<rootDir>/test/',
|
|
],
|
|
transform: {},
|
|
};
|