mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
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:
parent
e198b5ccf6
commit
3e7b172c81
2 changed files with 4 additions and 6 deletions
|
@ -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');
|
||||
});
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue