[7.x] Removing flaky axe rule (#69418) (#69424)

This commit is contained in:
Michail Yasonik 2020-06-17 20:26:36 -04:00 committed by GitHub
parent ffae603bdd
commit 7751681c0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -99,6 +99,9 @@ export function A11yProvider({ getService }: FtrProviderContext) {
'color-contrast': {
enabled: false,
},
bypass: {
enabled: false, // disabled because it's too flaky
},
},
};

View file

@ -12,8 +12,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const retry = getService('retry');
const globalNav = getService('globalNav');
// FLAKY: https://github.com/elastic/kibana/issues/66976
describe.skip('Kibana Home', () => {
describe('Kibana Home', () => {
before(async () => {
await PageObjects.common.navigateToApp('home');
});

View file

@ -14,8 +14,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const a11y = getService('a11y');
const flyout = getService('flyout');
// FLAKY: https://github.com/elastic/kibana/issues/67821
describe.skip('Accessibility Search Profiler Editor', () => {
describe('Accessibility Search Profiler Editor', () => {
before(async () => {
await PageObjects.common.navigateToApp('searchProfiler');
await a11y.testAppSnapshot();