Skip to content

Commit

Permalink
[Ingest Pipelines] Fix accessibility tests (#164341)
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonelizabeth authored Aug 23, 2023
1 parent 79178ca commit bd24560
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions x-pack/test/accessibility/apps/ingest_node_pipelines.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ export default function ({ getService, getPageObjects }: any) {
const log = getService('log');
const a11y = getService('a11y'); /* this is the wrapping service around axe */

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/157512
describe.skip('Ingest Pipelines Accessibility', async () => {
describe('Ingest Pipelines Accessibility', async () => {
before(async () => {
await putSamplePipeline(esClient);
await common.navigateToApp('ingestPipelines');
Expand All @@ -29,7 +28,7 @@ export default function ({ getService, getPageObjects }: any) {
await a11y.testAppSnapshot();
});

it('List View', async () => {
it('Details View', async () => {
await testSubjects.click('pipelineDetailsLink');
await retry.waitFor('testPipeline detail panel to be visible', async () => {
if (!testSubjects.isDisplayed('pipelineDetails')) {
Expand All @@ -50,8 +49,7 @@ export default function ({ getService, getPageObjects }: any) {
});

it('Create Pipeline Wizard', async () => {
await testSubjects.click('emptyStateCreatePipelineDropdown');
await testSubjects.click('emptyStateCreatePipelineButton');
await common.navigateToUrl('ingestPipelines', 'create', { shouldUseHashForSubUrl: false });
await retry.waitFor('Create pipeline page one to be visible', async () => {
return testSubjects.isDisplayed('pageTitle') ? true : false;
});
Expand Down

0 comments on commit bd24560

Please sign in to comment.