mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary This moves code from `plugins/aiops/common` to packages. The `aiops` plugin will from now on have only a `server` and `public` directory. This is in preparation for additional AIOps related public APIs and to avoid cyclic dependency problems for other consuming plugins. - Package `@kbn/aiops-utils` was renamed to `@kbn/aiops-common`. - For each AIOps feature a package was created: `@kbn/aiops-change-point-detection`, `@kbn/aiops-log-pattern-analysis` and `@kbn/aiops-log-rate-analysis`. ### Checklist - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
15 lines
581 B
JavaScript
15 lines
581 B
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; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
module.exports = {
|
|
preset: '@kbn/test',
|
|
rootDir: '../../..',
|
|
roots: ['<rootDir>/x-pack/plugins/aiops'],
|
|
coverageDirectory: '<rootDir>/target/kibana-coverage/jest/x-pack/plugins/aiops',
|
|
coverageReporters: ['text', 'html'],
|
|
collectCoverageFrom: ['<rootDir>/x-pack/plugins/aiops/{public,server}/**/*.{js,ts,tsx}'],
|
|
};
|