mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
* Migrate types to packages: Client-side HTTP service * Fix linting issues, compactify some imports * Fix incorrect typing, remove unnecessary exports * Remove unnecessary export * Fix trailing spaces removed by mistake * Move Sha256 to new @kbn/crypto-browser package * Support deprecated 'req' property in isHttpFetchError() method * Fix failing UT in lens * Update API docs * Reorder imports, absolute imports first * Provide createHttpFetchError() convenience method * Fix typing issue * Fix rebase issues * Fix incorrect import * Avod using core internals for plugin testing * Fix automerge issues * Misc enhancements following PR review
13 lines
472 B
JavaScript
13 lines
472 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-crypto-browser'],
|
|
};
|