Unskip a11y skipped tests in console & discover (#162903)

Unskipping a11y skipped tests in console and discover as corresponding
bugs are closed
This commit is contained in:
Bhavya RM 2023-08-02 08:15:08 -04:00 committed by GitHub
parent e198b5ccf6
commit 3e7b172c81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View file

@ -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');
});

View file

@ -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);