kibana/src/dev/jest/config.integration.js

17 lines
419 B
JavaScript
Raw Normal View History

import config from './config';
export default {
...config,
testMatch: [
'**/integration_tests/**/*.test.js',
2018-02-21 10:09:30 +01:00
'**/integration_tests/**/*.test.ts',
],
testPathIgnorePatterns: config.testPathIgnorePatterns.filter(
(pattern) => !pattern.includes('integration_tests')
),
reporters: [
'default',
['<rootDir>/src/dev/jest/junit_reporter.js', { reportName: 'Jest Integration Tests' }],
],
};