strapi/jest.config.e2e.js

13 lines
285 B
JavaScript
Raw Normal View History

2019-03-06 19:19:33 +01:00
module.exports = {
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',
coveragePathIgnorePatterns: [
'<rootDir>/dist/',
'<rootDir>/node_modules/',
'<rootDir>/out-tsc/',
'<rootDir>/test/',
],
2019-04-08 19:03:55 +02:00
transform: {},
2019-03-06 19:19:33 +01:00
};