mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
26 lines
1.2 KiB
JavaScript
26 lines
1.2 KiB
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
module.exports = {
|
|
preset: '@kbn/test',
|
|
rootDir: '../..',
|
|
roots: ['<rootDir>/packages/kbn-securitysolution-grouping'],
|
|
coverageReporters: ['text', 'html'],
|
|
collectCoverageFrom: [
|
|
'<rootDir>/packages/kbn-securitysolution-grouping/**/*.{ts,tsx}',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/*.test',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/types/*',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/*.type',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/*.styles',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/mocks/*',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/*.config',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/translations',
|
|
'!<rootDir>/packages/kbn-securitysolution-grouping/**/types/*',
|
|
],
|
|
setupFilesAfterEnv: ['<rootDir>/packages/kbn-securitysolution-grouping/setup_test.ts'],
|
|
};
|