kibana/packages
Cauê Marcondes 2711e7b1cc
Removing old e2e (#112170)
* removing old e2e

* removing e2e

* removing e2e

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-09-15 16:33:54 -04:00
..
elastic-datemath
elastic-eslint-config-kibana [eslint] add rule to forbid async forEach bodies (#111637) 2021-09-14 13:20:53 -07:00
elastic-safer-lodash-set
kbn-ace
kbn-alerts
kbn-analytics
kbn-apm-config-loader
kbn-apm-utils
kbn-babel-code-parser
kbn-babel-preset
kbn-cli-dev-mode Removing old e2e (#112170) 2021-09-15 16:33:54 -04:00
kbn-config [Deprecations service] Expose level field to config deprecations (#111516) 2021-09-09 08:59:44 -04:00
kbn-config-schema
kbn-crypto
kbn-dev-utils [vscode] support managing string keys and manage typescript.tsdk (#112185) 2021-09-14 21:30:41 -07:00
kbn-docs-utils Clean up some of the API doc code (#111635) 2021-09-08 17:50:25 -04:00
kbn-es [ci] bump Jenkins worker memory and es JVM size (#111760) 2021-09-09 14:26:08 -04:00
kbn-es-archiver
kbn-es-query
kbn-eslint-import-resolver-kibana
kbn-eslint-plugin-eslint [eslint] add rule to forbid async forEach bodies (#111637) 2021-09-14 13:20:53 -07:00
kbn-expect
kbn-field-types
kbn-i18n
kbn-interpreter
kbn-io-ts-utils
kbn-legacy-logging
kbn-logging
kbn-mapbox-gl
kbn-monaco
kbn-optimizer Timelion App removal (#110255) 2021-09-10 14:53:07 +03:00
kbn-plugin-generator
kbn-plugin-helpers
kbn-pm [ci-stats] retry requests that respond with a 500 or greater (#111967) 2021-09-13 11:56:41 -07:00
kbn-rule-data-utils
kbn-securitysolution-autocomplete
kbn-securitysolution-es-utils
kbn-securitysolution-hook-utils
kbn-securitysolution-io-ts-alerting-types
kbn-securitysolution-io-ts-list-types
kbn-securitysolution-io-ts-types
kbn-securitysolution-io-ts-utils
kbn-securitysolution-list-api
kbn-securitysolution-list-constants
kbn-securitysolution-list-hooks
kbn-securitysolution-list-utils
kbn-securitysolution-t-grid
kbn-securitysolution-utils
kbn-server-http-tools
kbn-server-route-repository
kbn-spec-to-console [Console] Added information about autocomplete definitions (#105112) 2021-09-10 09:46:14 +02:00
kbn-std [eslint] add rule to forbid async forEach bodies (#111637) 2021-09-14 13:20:53 -07:00
kbn-storybook
kbn-telemetry-tools
kbn-test [ftr] Check client status using v8format=true (#111480) 2021-09-08 08:24:26 -05:00
kbn-test-subj-selector
kbn-tinymath
kbn-typed-react-router-config [APM] Use full path in route definition (#111501) 2021-09-09 08:30:26 +02:00
kbn-ui-framework [jest] update config files to get coverage per plugin (#111299) 2021-09-09 08:14:56 +02:00
kbn-ui-shared-deps Make classnames a shared dep (#111636) 2021-09-10 17:44:27 +02:00
kbn-utility-types
kbn-utils [config] Remove deprecated environment variables CONFIG_PATH and DATA_PATH (#111535) 2021-09-09 19:31:46 -04:00
BUILD.bazel
README.md

Kibana-related packages

This folder contains packages that are intended for use in Kibana and Kibana plugins.

tl;dr:

  • Don't publish to npm registry
  • Always use the @kbn namespace
  • Always set "private": true in package.json

Using these packages

We no longer publish these packages to the npm registry. Now, instead of specifying a version when including these packages, we rely on yarn workspaces, which sets up a symlink to the package.

For example if you want to use the @kbn/i18n package in Kibana itself, you can specify the dependency like this:

"@kbn/i18n": "1.0.0"

However, if you want to use this from a Kibana plugin, you need to use a link: dependency and account for the relative location of the Kibana repo, so it would instead be:

"@kbn/i18n": "link:../../kibana/packages/kbn-i18n"

How all of this works is described in more detail in the @kbn/pm docs.

Creating a new package

Create a new sub-folder. The name of the folder should mirror the name in the package's package.json. E.g. if the name is @kbn/i18n the folder name should be kbn-i18n.

All new packages should use the @kbn namespace, and should be marked with "private": true.

Unit tests for a package

Currently there is only one tool being used in order to test packages which is Jest. Below we will explain how it should be done.

Jest

A package should follow the pattern of having .test.js files as siblings of the source code files, and these run by Jest.

A package using the .test.js naming convention will have those tests automatically picked up by Jest and run by the unit test runner, currently mapped to the Kibana test script in the root package.json.

  • yarn test or yarn grunt test runs all unit tests.
  • yarn jest runs all Jest tests in Kibana.

In order for the plugin or package to use Jest, a jest.config.js file must be present in it's root. However, there are safeguards for this in CI should a test file be added without a corresponding config file.


Each package can also specify its own test script in the package's package.json, for cases where you'd prefer to run the tests from the local package directory.