From f7f65dafed3110fce32d25592308be86cfd0b74e Mon Sep 17 00:00:00 2001 From: Alex Szabo Date: Wed, 18 Sep 2024 15:09:03 +0200 Subject: [PATCH] skip another 3 cases that fail on chrome 129, adjust previous texts for similarity --- test/functional/apps/dashboard/group1/url_field_formatter.ts | 3 ++- test/functional/apps/dashboard/group5/embed_mode.ts | 4 ++-- test/functional/apps/discover/group6/_time_field_column.ts | 3 ++- x-pack/test/functional/apps/lens/group6/workspace_size.ts | 5 +++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/test/functional/apps/dashboard/group1/url_field_formatter.ts b/test/functional/apps/dashboard/group1/url_field_formatter.ts index 50edce184a04d..f0282eff4ea13 100644 --- a/test/functional/apps/dashboard/group1/url_field_formatter.ts +++ b/test/functional/apps/dashboard/group1/url_field_formatter.ts @@ -37,7 +37,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { expect(currentUrl).to.equal(fieldUrl); }; - describe('Changing field formatter to Url', () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + describe.skip('Changing field formatter to Url', () => { before(async function () { await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader', 'animals']); await kibanaServer.savedObjects.cleanStandardList(); diff --git a/test/functional/apps/dashboard/group5/embed_mode.ts b/test/functional/apps/dashboard/group5/embed_mode.ts index 5bba11d3b574a..f2f64d76bce10 100644 --- a/test/functional/apps/dashboard/group5/embed_mode.ts +++ b/test/functional/apps/dashboard/group5/embed_mode.ts @@ -57,7 +57,7 @@ export default function ({ await browser.setWindowSize(1300, 900); }); - // Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207 + // Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199 describe.skip('default URL params', () => { it('hides the chrome', async () => { const globalNavShown = await globalNav.exists(); @@ -92,7 +92,7 @@ export default function ({ }); }); - // Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207 + // Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199 describe.skip('non-default URL params', () => { it('shows or hides elements based on URL params', async () => { const currentUrl = await browser.getCurrentUrl(); diff --git a/test/functional/apps/discover/group6/_time_field_column.ts b/test/functional/apps/discover/group6/_time_field_column.ts index f8279d532e6c4..7e058a71eac0b 100644 --- a/test/functional/apps/discover/group6/_time_field_column.ts +++ b/test/functional/apps/discover/group6/_time_field_column.ts @@ -308,7 +308,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - it('should render selected columns correctly', async () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + it.skip('should render selected columns correctly', async () => { await discover.selectTextBaseLang(); await checkSelectedColumns({ diff --git a/x-pack/test/functional/apps/lens/group6/workspace_size.ts b/x-pack/test/functional/apps/lens/group6/workspace_size.ts index 9c5e7fec773f0..0ba44a5249c6e 100644 --- a/x-pack/test/functional/apps/lens/group6/workspace_size.ts +++ b/x-pack/test/functional/apps/lens/group6/workspace_size.ts @@ -268,14 +268,15 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await assertWorkspaceDimensions('600px', '375px'); }); - // Fails in chrome 128+ + // Fails in chrome 128+: https://github.com/elastic/kibana-operations/issues/199 it.skip('gauge size (absolute pixels) - major arc', async () => { await lens.openVisualOptions(); await lens.setGaugeShape('Major arc'); await assertWorkspaceDimensions('600px', '430px'); }); - it('gauge size (absolute pixels) - circle', async () => { + // Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199 + it.skip('gauge size (absolute pixels) - circle', async () => { await lens.openVisualOptions(); await lens.setGaugeShape('Circle'); await assertWorkspaceDimensions('600px', '430px');