skip a11y spaces tests. #77933, #96625

This commit is contained in:
Jonathan Budzenski 2021-04-08 13:36:45 -05:00
parent 06e01c20e7
commit 869fd9355a

View file

@ -18,13 +18,15 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const retry = getService('retry');
const toasts = getService('toasts');
describe('Kibana spaces page meets a11y validations', () => {
// flaky
// https://github.com/elastic/kibana/issues/77933
// https://github.com/elastic/kibana/issues/96625
describe.skip('Kibana spaces page meets a11y validations', () => {
before(async () => {
await esArchiver.load('empty_kibana');
await PageObjects.common.navigateToApp('home');
});
// flaky https://github.com/elastic/kibana/issues/77933
it.skip('a11y test for manage spaces menu from top nav on Kibana home', async () => {
await PageObjects.spaceSelector.openSpacesNav();
await retry.waitFor(
@ -34,7 +36,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await a11y.testAppSnapshot();
});
// flaky
it.skip('a11y test for manage spaces page', async () => {
await PageObjects.spaceSelector.clickManageSpaces();
await PageObjects.header.waitUntilLoadingHasFinished();