mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
## Summary We are removing duplicated code in sections of plugins into the kibana/packages folder. This is phase 1 of 4+ where: Phase 1: Lift and shift the io-ts code into `kibana/packages/kbn-securitysolution-io-ts-utils` Phase 2: Deprecate the utils across plugins any copied code Phase 3: Replace the deprecated types with the ones in here where we can. [Strangle pattern](https://martinfowler.com/bliki/StranglerFigApplication.html) Phase 4+: (potentially) consolidating any duplication or everything altogether with the `kbn-io-ts-utils` project ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
13 lines
486 B
JavaScript
13 lines
486 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 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-io-ts-utils'],
|
|
};
|