-
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
Add waitUntilLoadingHasFinished in failing tests #205485
Conversation
Pinging @elastic/kibana-management (Team:Kibana Management) |
💚 Build Succeeded
Metrics [docs]Async chunks
History
cc @SoniaSanzV |
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.
Thanks for working on this @SoniaSanzV! Did you happen to check if the flakyness is fixed by running the Flaky test runner?
@@ -234,7 +234,7 @@ export const TabSummary: React.FunctionComponent<Props> = ({ templateDetails }) | |||
defaultMessage="Index mode" | |||
/> | |||
</EuiDescriptionListTitle> | |||
<EuiDescriptionListDescription> | |||
<EuiDescriptionListDescription data-test-subj="indexModeValue"> |
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.
Is this test subject used somewhere?
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.
Yes, it is used. So I don't know why they were passing when I was running them locally 🫠
Dind't know that this tool existed! Really useful. |
Flaky Test Runner Stats🟠 Some tests failed. - kibana-flaky-test-suite-runner#7651[❌] x-pack/test/functional/apps/index_management/config.ts: 2/25 tests passed. |
Flaky Test Runner Stats🟠 Some tests failed. - kibana-flaky-test-suite-runner#7654[❌] x-pack/test/functional/apps/index_management/config.ts: 170/200 tests passed. |
Flaky Test Runner Stats🟠 Some tests failed. - kibana-flaky-test-suite-runner#7658[✅] x-pack/test/functional/apps/index_management/config.ts: 50/50 tests passed. |
Flaky Test Runner Stats🎉 All tests passed! - kibana-flaky-test-suite-runner#7662[✅] x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group1.ts: 200/200 tests passed. |
Flaky Test Runner Stats🎉 All tests passed! - kibana-flaky-test-suite-runner#7664[✅] x-pack/test_serverless/functional/test_suites/search/common_configs/config.group1.ts: 200/200 tests passed. |
Flaky Test Runner Stats🎉 All tests passed! - kibana-flaky-test-suite-runner#7663[✅] x-pack/test_serverless/functional/test_suites/security/common_configs/config.group1.ts: 200/200 tests passed. |
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.
Great job @SoniaSanzV!
Starting backport for target branches: 8.x |
Fixes: elastic#205535 Fixes: elastic#205514 Fixes: elastic#205498 Fixes: elastic#205464 Fixes: elastic#205456 Fixes: elastic#205453 Fixes: elastic#205450 Fixes: elastic#205412 Fixes: elastic#205410 Fixes: elastic#205401 Fixes: elastic#205400 Fixes: elastic#205399 Fixes: elastic#205350 Fixes: elastic#205349 Fixes: elastic#205316 Fixes: elastic#205288 Fixes: elastic#205287 ## Summary It seems that the step tabs are not loading fast enough for the tests to find the expected element in a [bunch of test](https://github.com/elastic/kibana/issues?q=is%3Aopen%20label%3A%22Team%3AKibana%20Management%22%20label%3A%22failed-test%22%20created%3A%3E%40today-1w%20). This PR attempt to fix it. It also adds the `data-test-subj="indexModeValue"` tag in `TabSummary` that was missing. (cherry picked from commit bcdf942)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
Fixes: #205535
Fixes: #205514
Fixes: #205498
Fixes: #205464
Fixes: #205456
Fixes: #205453
Fixes: #205450
Fixes: #205412
Fixes: #205410
Fixes: #205401
Fixes: #205400
Fixes: #205399
Fixes: #205350
Fixes: #205349
Fixes: #205316
Fixes: #205288
Fixes: #205287
Summary
It seems that the step tabs are not loading fast enough for the tests to find the expected element in a bunch of test. This PR attempt to fix it. It also adds the
data-test-subj="indexModeValue"
tag inTabSummary
that was missing.