mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
# 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>
This commit is contained in:
parent
606db2f2e0
commit
d75b20ed8b
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ export const LCP_LABEL = i18n.translate('xpack.observability.ux.coreVitals.lcp',
|
|||
});
|
||||
|
||||
export const INP_LABEL = i18n.translate('xpack.observability.ux.coreVitals.inp', {
|
||||
defaultMessage: 'Interaction to Next Paint',
|
||||
defaultMessage: 'Interaction to next paint',
|
||||
});
|
||||
|
||||
export const CLS_LABEL = i18n.translate('xpack.observability.ux.coreVitals.cls', {
|
||||
|
|
|
@ -59,7 +59,7 @@ journey('INP', async ({ page, params }) => {
|
|||
});
|
||||
|
||||
step('Check INP Values', async () => {
|
||||
expect(await page.$('text=Interaction to Next Paint'));
|
||||
expect(await page.$('text=Interaction to next paint'));
|
||||
await page.waitForSelector('[data-test-subj=inp-core-vital] > .euiTitle');
|
||||
await page.waitForSelector('text=381 ms');
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue