mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[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:
parent
eed02b930a
commit
8fee85d841
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue