mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Remove /src/legacy (#95510) * starting removing stuff * fix jest config * disable CLI mode until other PR is merged * fix the schema * add deprecation for maxPayloadBytes * fix legacy start logic * deletes `env` from unknown args * fix FTR test config * some legacy service deletion * move config validation * remove legacy exports from entrypoint * preserve legacy logging in core logging config * try to fix uiSettings integration tests * fix legacy service tests * more type fix * use fromRoot from @kbn/utils * cleanup kibana.d.ts * fix unit tests * remove src/core/server/utils * fix server script * add integration test for `/{path*}` route * add unit tests on legacy config * adapt uiSetting IT bis * fix tests * update generated doc * address some review comments * move review comments * fix some stuff * fix some stuff * fix some stuff * fix some stuff bis * generated doc * add test for ensureValidConfiguration # Conflicts: # .github/CODEOWNERS # src/cli_plugin/install/core_plugins/kibana/public/context/query_parameters/state.js # src/core/server/http/http_config.ts # x-pack/test/functional/config.js * codestyle
19 lines
650 B
JavaScript
19 lines
650 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: '.',
|
|
projects: [
|
|
'<rootDir>/packages/*/jest.config.js',
|
|
'<rootDir>/src/*/jest.config.js',
|
|
'<rootDir>/src/plugins/*/jest.config.js',
|
|
'<rootDir>/test/*/jest.config.js',
|
|
'<rootDir>/x-pack/plugins/*/jest.config.js',
|
|
],
|
|
};
|