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