mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[ci] skip FTRs that fail on chrome 129 (#193293)
## 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: https://github.com/elastic/kibana-operations/issues/199
This commit is contained in:
parent
854cb15725
commit
f47987f540
4 changed files with 9 additions and 6 deletions
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue