2022-11-16 16:31:01 +01:00
|
|
|
'use strict';
|
|
|
|
|
2019-03-06 19:19:33 +01:00
|
|
|
module.exports = {
|
2022-07-11 18:56:57 +02:00
|
|
|
displayName: 'API integration tests',
|
2022-10-27 19:49:37 +02:00
|
|
|
testMatch: ['**/?(*.)+(spec|test).api.js'],
|
2019-03-06 19:19:33 +01:00
|
|
|
testEnvironment: 'node',
|
2022-10-27 19:49:37 +02:00
|
|
|
setupFilesAfterEnv: ['<rootDir>/test/jest-api.setup.js'],
|
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
|
|
|
};
|