2019-03-06 19:19:33 +01:00
|
|
|
module.exports = {
|
2020-01-16 16:50:43 +01:00
|
|
|
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',
|
2020-05-18 20:39:39 +02:00
|
|
|
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: {},
|
2020-12-02 15:20:12 +01:00
|
|
|
modulePathIgnorePatterns: ['.cache'],
|
2019-03-06 19:19:33 +01:00
|
|
|
};
|