-
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
[ftr] migrate time picker GUI selection to uiSettings API call #161642
[ftr] migrate time picker GUI selection to uiSettings API call #161642
Conversation
…-via-userSettings
💚 Build Succeeded
Metrics [docs]Unknown metric groupsESLint disabled line counts
Total ESLint disabled count
History
To update your PR or re-run it, just comment with: |
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.
Data Discovery FT changes LGTM 👍
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.
Vis team changes LGTM, code review only!
…ic#161642) closes elastic#113998 In order to make FTR functional tests faster and less flaky, we started migrating time picker selection from UI action to Kibana API call: ``` await this.kibanaServer.uiSettings.update({ 'timepicker:timeDefaults': `{ "from": <startTime>, "to": <endTime>}`, }); ``` In this PR I updated most of the tests listed in the meta issue, so we can close it. Flaky test runner https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606 (cherry picked from commit 85a99c9)
…ic#161642) closes elastic#113998 In order to make FTR functional tests faster and less flaky, we started migrating time picker selection from UI action to Kibana API call: ``` await this.kibanaServer.uiSettings.update({ 'timepicker:timeDefaults': `{ "from": <startTime>, "to": <endTime>}`, }); ``` In this PR I updated most of the tests listed in the meta issue, so we can close it. Flaky test runner https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606 (cherry picked from commit 85a99c9)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
…161642) (#161725) # Backport This will backport the following commits from `main` to `8.9`: - [[ftr] migrate time picker GUI selection to uiSettings API call (#161642)](#161642) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Dzmitry Lemechko","email":"[email protected]"},"sourceCommit":{"committedDate":"2023-07-12T07:06:53Z","message":"[ftr] migrate time picker GUI selection to uiSettings API call (#161642)\n\ncloses #113998\r\n\r\nIn order to make FTR functional tests faster and less flaky, we started\r\nmigrating time picker selection from UI action to Kibana API call:\r\n\r\n```\r\n await this.kibanaServer.uiSettings.update({\r\n 'timepicker:timeDefaults': `{ \"from\": <startTime>, \"to\": <endTime>}`,\r\n });\r\n```\r\n\r\nIn this PR I updated most of the tests listed in the meta issue, so we\r\ncan close it.\r\n\r\nFlaky test runner\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606","sha":"85a99c954f386bfa6291b266fe94a1456e312b25","branchLabelMapping":{"^v8.10.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","v8.10.0","v8.8.3","v8.9.1"],"number":161642,"url":"https://github.com/elastic/kibana/pull/161642","mergeCommit":{"message":"[ftr] migrate time picker GUI selection to uiSettings API call (#161642)\n\ncloses #113998\r\n\r\nIn order to make FTR functional tests faster and less flaky, we started\r\nmigrating time picker selection from UI action to Kibana API call:\r\n\r\n```\r\n await this.kibanaServer.uiSettings.update({\r\n 'timepicker:timeDefaults': `{ \"from\": <startTime>, \"to\": <endTime>}`,\r\n });\r\n```\r\n\r\nIn this PR I updated most of the tests listed in the meta issue, so we\r\ncan close it.\r\n\r\nFlaky test runner\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606","sha":"85a99c954f386bfa6291b266fe94a1456e312b25"}},"sourceBranch":"main","suggestedTargetBranches":["8.8","8.9"],"targetPullRequestStates":[{"branch":"main","label":"v8.10.0","labelRegex":"^v8.10.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/161642","number":161642,"mergeCommit":{"message":"[ftr] migrate time picker GUI selection to uiSettings API call (#161642)\n\ncloses #113998\r\n\r\nIn order to make FTR functional tests faster and less flaky, we started\r\nmigrating time picker selection from UI action to Kibana API call:\r\n\r\n```\r\n await this.kibanaServer.uiSettings.update({\r\n 'timepicker:timeDefaults': `{ \"from\": <startTime>, \"to\": <endTime>}`,\r\n });\r\n```\r\n\r\nIn this PR I updated most of the tests listed in the meta issue, so we\r\ncan close it.\r\n\r\nFlaky test runner\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606","sha":"85a99c954f386bfa6291b266fe94a1456e312b25"}},{"branch":"8.8","label":"v8.8.3","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.9","label":"v8.9.1","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Dzmitry Lemechko <[email protected]>
closes #113998
In order to make FTR functional tests faster and less flaky, we started migrating time picker selection from UI action to Kibana API call:
In this PR I updated most of the tests listed in the meta issue, so we can close it.
Flaky test runner https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2606