Skip to content

Commit

Permalink
Unskip a11y skipped tests in console & discover (elastic#162903)
Browse files Browse the repository at this point in the history
Unskipping a11y skipped tests in console and discover as corresponding
bugs are closed
  • Loading branch information
bhavyarm authored Aug 2, 2023
1 parent e198b5c commit 3e7b172
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions test/accessibility/apps/console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'console']);
const a11y = getService('a11y');

// https://github.com/elastic/kibana/issues/148538
describe.skip('Dev tools console', () => {
describe('Dev tools console', () => {
before(async () => {
await PageObjects.common.navigateToApp('console');
});
Expand Down
7 changes: 3 additions & 4 deletions test/accessibility/apps/discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await testSubjects.click('unifiedHistogramChartOptionsToggle');
});

// https://github.com/elastic/kibana/issues/148567
it.skip('a11y test for data grid sort panel', async () => {
it('a11y test for data grid sort panel', async () => {
await testSubjects.click('dataGridColumnSortingButton');
await a11y.testAppSnapshot();
await browser.pressKeys(browser.keys.ESCAPE);
});
// https://github.com/elastic/kibana/issues/148567
it.skip('a11y test for setting row height for display panel', async () => {

it('a11y test for setting row height for display panel', async () => {
await testSubjects.click('dataGridDisplaySelectorPopover');
await a11y.testAppSnapshot();
await browser.pressKeys(browser.keys.ESCAPE);
Expand Down

0 comments on commit 3e7b172

Please sign in to comment.