[ObsUX] Skip flaky tests (#209500)

## Summary

Processes and Logs tabs test has been flaky for some time, after
different and numerous attempts to fix them we want to consider removing
them and convert them to component test.

This PR skips Processes tab as Logs tab was already skipped, and we
opened an issue make them component tests.
https://github.com/elastic/kibana/issues/209497

Closes: https://github.com/elastic/kibana/issues/192891 &
https://github.com/elastic/kibana/issues/203656
This commit is contained in:
Miriam 2025-02-04 17:26:10 +00:00 committed by GitHub
parent eed02b930a
commit 8fee85d841
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -489,8 +489,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});
});
describe('Processes Tab', () => {
// FLAKY: https://github.com/elastic/kibana/issues/192891
describe.skip('Processes Tab', () => {
before(async () => {
await esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_hosts_processes');
await esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_and_logs');
@ -560,7 +560,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
);
});
it('should render logs tab', async () => {
it('should render logs tab content', async () => {
await pageObjects.assetDetails.logsExists();
});
@ -585,7 +585,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await pageObjects.assetDetails.clickOsqueryTab();
});
it('should show a date picker', async () => {
it('should not show a date picker', async () => {
expect(await pageObjects.timePicker.timePickerExists()).to.be(false);
});
});