kibana/x-pack/plugins/ux
Kibana Machine d75b20ed8b
[8.12] [UX INP] Fix label casing (#173605) (#173655)
# Backport

This will backport the following commits from `main` to `8.12`:
- [[UX INP] Fix label casing
(#173605)](https://github.com/elastic/kibana/pull/173605)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT
[{"author":{"name":"Shahzad","email":"shahzad31comp@gmail.com"},"sourceCommit":{"committedDate":"2023-12-19T15:20:37Z","message":"[UX
INP] Fix label casing (#173605)\n\n## Summary\r\n\r\nFix label casing
!!","sha":"86561c2ace1924abb1d36c0c7abfd16b46a135c8","branchLabelMapping":{"^v8.13.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:prev-minor","Team:obs-ux-infra_services","Team:obs-ux-management","v8.13.0"],"number":173605,"url":"https://github.com/elastic/kibana/pull/173605","mergeCommit":{"message":"[UX
INP] Fix label casing (#173605)\n\n## Summary\r\n\r\nFix label casing
!!","sha":"86561c2ace1924abb1d36c0c7abfd16b46a135c8"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.13.0","labelRegex":"^v8.13.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/173605","number":173605,"mergeCommit":{"message":"[UX
INP] Fix label casing (#173605)\n\n## Summary\r\n\r\nFix label casing
!!","sha":"86561c2ace1924abb1d36c0c7abfd16b46a135c8"}}]}] BACKPORT-->

Co-authored-by: Shahzad <shahzad31comp@gmail.com>
2023-12-20 02:59:29 -07:00
..
.buildkite/pipelines Enable synthetics flaky runner (#137289) 2022-07-28 16:33:08 +02:00
.storybook
common [RUM Dashboard] Replace FID with INP (#172467) 2023-12-05 16:57:05 -07:00
e2e [8.12] [UX INP] Fix label casing (#173605) (#173655) 2023-12-20 02:59:29 -07:00
public [8.12] Fix for TriggersActionsUi not being present on the same place in different KibanaContexts (#173388) (#173587) 2023-12-18 23:55:37 -07:00
scripts [packages] migrate all plugins to packages (#148130) 2023-02-08 21:06:50 -06:00
server async-import plugins in the server side (#170856) 2023-11-15 00:55:56 -07:00
typings [Synthetics] Migrate service list query out of APM (#132548) 2022-05-23 17:04:55 -07:00
.prettierrc
CONTRIBUTING.md
jest.config.js
kibana.jsonc Update new codeowners for Obs team changes (#170182) 2023-11-08 14:30:17 +00:00
readme.md Add a simple set of instructions on running and developing e2e tests for UX dashboard. (#134371) 2022-06-14 10:29:48 -07:00
tsconfig.json Removes duplicated RedirectAppLinks component (#170304) 2023-11-13 10:17:13 +01:00

Documentation for UX UI developers

https://docs.elastic.dev/kibana-dev-docs/welcome

Running E2E Tests

The tests are managed via the scripts/e2e.js file. This script accepts numerous options.

From the kibana root you can run node x-pack/plugins/ux/scripts/e2e.js to simply stand up the stack, load data, and run the tests.

If you are developing a new test, it is better to stand up the stack in one shell and load data/run tests in a second session. You can do this by running:

  • node ./x-pack/plugins/ux/scripts/e2e.js --server
  • node ./x-pack/plugins/ux/scripts/e2e.js --runner, you can also specify --grep "{TEST_NAME}" to run a specific series of tests