-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Discover] Fix flaky test for "context encoded URL params" #132808
[Discover] Fix flaky test for "context encoded URL params" #132808
Conversation
Pinging @elastic/kibana-data-discovery (Team:DataDiscovery) |
@elasticmachine merge upstream |
await kibanaServer.uiSettings.update({ | ||
'doc_table:legacy': false, | ||
'discover:searchOnPageLoad': true, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is an interesting case since discover:searchOnPageLoad
should already be true
. I'd suggest to add to the after
part of _search_on_page_load.ts
after(async () => { |
await kibanaServer.uiSettings.replace(defaultSettings);
So it should be cleaned up correctly , and since L34-L37 are setting default values, it could be removed.
@elasticmachine merge upstream |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thx for cleaning this up! 👍
💚 Build SucceededMetrics [docs]
History
To update your PR or re-run it, just comment with: cc @jughosta |
Closes #132553
Flaky test runner 50x https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/667
Checklist