Skip to content

Commit

Permalink
[Discover] Unskip flaky a11y tests (elastic#149827)
Browse files Browse the repository at this point in the history
jughosta authored and kqualters-elastic committed Feb 6, 2023
1 parent ddd25ba commit 8bacf6f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/accessibility/apps/discover.ts
Original file line number Diff line number Diff line change
@@ -20,8 +20,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const browser = getService('browser');
const retry = getService('retry');

// Failing: See https://github.com/elastic/kibana/issues/147186
describe.skip('Discover a11y tests', () => {
describe('Discover a11y tests', () => {
before(async () => {
await PageObjects.common.navigateToApp('discover');
await PageObjects.timePicker.setCommonlyUsedTime('Last_7 days');
@@ -139,6 +138,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {

await retry.try(async () => {
await testSubjects.click('euiFlyoutCloseButton');
});

await retry.try(async () => {
await toasts.dismissAllToasts();
});

0 comments on commit 8bacf6f

Please sign in to comment.