mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
# Backport This will backport the following commits from `main` to `8.16`: - [[Console] Fix flaky autocomplete functional tests (#208322)](https://github.com/elastic/kibana/pull/208322) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Ignacio Rivas","email":"rivasign@gmail.com"},"sourceCommit":{"committedDate":"2025-01-27T14:01:19Z","message":"[Console] Fix flaky autocomplete functional tests (#208322)","sha":"458704f475fbd6c291aea13f636d9c0ffd78535f","branchLabelMapping":{"^v9.0.0$":"main","^v8.18.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Feature:Console","Team:Kibana Management","release_note:skip","v9.0.0","backport:prev-major"],"title":"[Console] Fix flaky autocomplete functional tests","number":208322,"url":"https://github.com/elastic/kibana/pull/208322","mergeCommit":{"message":"[Console] Fix flaky autocomplete functional tests (#208322)","sha":"458704f475fbd6c291aea13f636d9c0ffd78535f"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/208322","number":208322,"mergeCommit":{"message":"[Console] Fix flaky autocomplete functional tests (#208322)","sha":"458704f475fbd6c291aea13f636d9c0ffd78535f"}}]}] BACKPORT--> Co-authored-by: Ignacio Rivas <rivasign@gmail.com>
This commit is contained in:
parent
33063e343a
commit
582704727a
1 changed files with 2 additions and 3 deletions
|
@ -34,8 +34,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
});
|
||||
}
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/156926
|
||||
describe.skip('console autocomplete feature', function describeIndexTests() {
|
||||
describe('console autocomplete feature', function describeIndexTests() {
|
||||
before(async () => {
|
||||
log.debug('navigateTo console');
|
||||
await PageObjects.common.navigateToApp('console');
|
||||
|
@ -53,7 +52,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
|
||||
it('should provide basic auto-complete functionality', async () => {
|
||||
await PageObjects.console.enterText(`GET _search\n`);
|
||||
await PageObjects.console.pressEnter();
|
||||
await PageObjects.console.enterText(`{\n\t"query": {`);
|
||||
await PageObjects.console.pressEnter();
|
||||
await PageObjects.console.sleepForDebouncePeriod();
|
||||
|
@ -147,6 +145,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
it('JSON autocompletion with placeholder fields', async () => {
|
||||
await PageObjects.console.enterText('GET _search\n');
|
||||
await PageObjects.console.enterText('{');
|
||||
await PageObjects.console.sleepForDebouncePeriod();
|
||||
await PageObjects.console.pressEnter();
|
||||
|
||||
for (const char of '"ag') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue