Skip to content

Commit

Permalink
[ci] skip FTRs that fail on chrome 129 (#193293)
Browse files Browse the repository at this point in the history
## Summary
`google-chrome-stable` is now on version 129. Another set of tests
started to fail when running against a VM with unpinned chrome version:
https://buildkite.com/elastic/kibana-pull-request/builds/235162

This PR skips another 3 tests and adjusts all messages to point to the
central issue.

Relates to: elastic/kibana-operations#199

(cherry picked from commit f47987f)

# Conflicts:
#	test/functional/apps/dashboard/group5/embed_mode.ts
#	test/functional/apps/discover/group6/_time_field_column.ts
#	x-pack/test/functional/apps/lens/group6/workspace_size.ts
  • Loading branch information
delanni committed Sep 20, 2024
1 parent 3f98ac6 commit d81ae7b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/dashboard/group1/url_field_formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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();
Expand Down
6 changes: 4 additions & 2 deletions test/functional/apps/dashboard/group5/embed_mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ export default function ({
await browser.setWindowSize(1300, 900);
});

describe('default URL params', () => {
// 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();
expect(globalNavShown).to.be(true);
Expand Down Expand Up @@ -90,7 +91,8 @@ export default function ({
});
});

describe('non-default URL params', () => {
// 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();
const newUrl = [currentUrl].concat(urlParamExtensions).join('&');
Expand Down
3 changes: 2 additions & 1 deletion test/functional/apps/discover/group6/_time_field_column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,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 PageObjects.discover.selectTextBaseLang();

await checkSelectedColumns({
Expand Down
6 changes: 4 additions & 2 deletions x-pack/test/functional/apps/lens/group6/workspace_size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await assertWorkspaceDimensions('600px', '375px');
});

it('gauge size (absolute pixels) - major arc', async () => {
// Fails in chrome 128+: https://github.com/elastic/kibana-operations/issues/199
it.skip('gauge size (absolute pixels) - major arc', async () => {
await retry.try(async () => {
await PageObjects.lens.switchToVisualization(GaugeShapes.ARC, '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 retry.try(async () => {
await PageObjects.lens.switchToVisualization(GaugeShapes.CIRCLE, 'circular');
});
Expand Down

0 comments on commit d81ae7b

Please sign in to comment.