Skip to content

Commit

Permalink
Removing flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michail Yasonik committed Jun 17, 2020
1 parent 1cef65e commit 49d24e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions test/accessibility/services/a11y/a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export function A11yProvider({ getService }: FtrProviderContext) {
'color-contrast': {
enabled: false,
},
bypass: {
enabled: false, // disabled because it's too flaky
},
},
};

Expand Down
3 changes: 1 addition & 2 deletions x-pack/test/accessibility/apps/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
Expand Down
3 changes: 1 addition & 2 deletions x-pack/test/accessibility/apps/search_profiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 49d24e7

Please sign in to comment.