mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* create empty packages * create more packages * start moving most types to `@kbn/core-http-server` * export moved types * add bazel dependencies for `@kbn/core-http-server` * create explicit responseFactory types * start adapting imports * adapt imports in http/router * continue adapting imports * revert creation of other packages * adapt lifecycle types * move lifecycle types * move missing types * adapt more usages * fix entrypoint exports * fix internal request handler contexts * ok let's wait for CI now * ok just a last one * gotcha * clean some tsdoc * start fixing violations * move router types to sub folder * fix more violations * lint * more test violations * lint 2 * fix violations external to core * move ICspConfig to package * move external url types * move IBasePath to package * move more types * start fixing violations due to latest moves * fix server/types * move auth_header types * move context container type * move contract types * tsdoc * fix violations due to latests moves * fix import in reporting * fix type in canvas * move context container out of nested folder * update README * self-review * remove duplicate entry from codeowners file * create the @kbn/hapi-mocks package * move router mocks to correct package
13 lines
478 B
JavaScript
13 lines
478 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/jest_node',
|
|
rootDir: '../..',
|
|
roots: ['<rootDir>/packages/kbn-hapi-mocks'],
|
|
};
|