Skip to content

Commit f7f65da

Browse files
committed
skip another 3 cases that fail on chrome 129, adjust previous texts for similarity
1 parent 77fe423 commit f7f65da

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

test/functional/apps/dashboard/group1/url_field_formatter.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
3737
expect(currentUrl).to.equal(fieldUrl);
3838
};
3939

40-
describe('Changing field formatter to Url', () => {
40+
// Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199
41+
describe.skip('Changing field formatter to Url', () => {
4142
before(async function () {
4243
await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader', 'animals']);
4344
await kibanaServer.savedObjects.cleanStandardList();

test/functional/apps/dashboard/group5/embed_mode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function ({
5757
await browser.setWindowSize(1300, 900);
5858
});
5959

60-
// Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207
60+
// Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199
6161
describe.skip('default URL params', () => {
6262
it('hides the chrome', async () => {
6363
const globalNavShown = await globalNav.exists();
@@ -92,7 +92,7 @@ export default function ({
9292
});
9393
});
9494

95-
// Fails in with chrome 128+ https://github.com/elastic/kibana/issues/163207
95+
// Fails in chrome 128+ https://github.com/elastic/kibana-operations/issues/199
9696
describe.skip('non-default URL params', () => {
9797
it('shows or hides elements based on URL params', async () => {
9898
const currentUrl = await browser.getCurrentUrl();

test/functional/apps/discover/group6/_time_field_column.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
308308
});
309309
});
310310

311-
it('should render selected columns correctly', async () => {
311+
// Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199
312+
it.skip('should render selected columns correctly', async () => {
312313
await discover.selectTextBaseLang();
313314

314315
await checkSelectedColumns({

x-pack/test/functional/apps/lens/group6/workspace_size.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,14 +268,15 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
268268
await assertWorkspaceDimensions('600px', '375px');
269269
});
270270

271-
// Fails in chrome 128+
271+
// Fails in chrome 128+: https://github.com/elastic/kibana-operations/issues/199
272272
it.skip('gauge size (absolute pixels) - major arc', async () => {
273273
await lens.openVisualOptions();
274274
await lens.setGaugeShape('Major arc');
275275
await assertWorkspaceDimensions('600px', '430px');
276276
});
277277

278-
it('gauge size (absolute pixels) - circle', async () => {
278+
// Fails in chrome 129+: https://github.com/elastic/kibana-operations/issues/199
279+
it.skip('gauge size (absolute pixels) - circle', async () => {
279280
await lens.openVisualOptions();
280281
await lens.setGaugeShape('Circle');
281282
await assertWorkspaceDimensions('600px', '430px');

0 commit comments

Comments
 (0)