/* * 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: ['/packages/kbn-securitysolution-exception-list-components'], coverageReporters: ['text', 'html'], collectCoverageFrom: [ '/packages/kbn-securitysolution-exception-list-components/**/*.{ts,tsx}', '!/packages/kbn-securitysolution-exception-list-components/**/*.test', '!/packages/kbn-securitysolution-exception-list-components/**/types/*', '!/packages/kbn-securitysolution-exception-list-components/**/*.type', '!/packages/kbn-securitysolution-exception-list-components/**/*.styles', '!/packages/kbn-securitysolution-exception-list-components/**/mocks/*', '!/packages/kbn-securitysolution-exception-list-components/**/*.config', '!/packages/kbn-securitysolution-exception-list-components/**/translations', '!/packages/kbn-securitysolution-exception-list-components/**/types/*', ], setupFilesAfterEnv: [ '/packages/kbn-securitysolution-exception-list-components/setup_test.ts', ], };