Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rashmivkulkarni committed Jun 14, 2022
1 parent 6d936d3 commit 2a909be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x-pack/test/accessibility/apps/stack_monitoring.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await a11y.testAppSnapshot();
});

it('No monitoring data found should exist ', async () => {
it('a11y tests for no monitoring data found page', async () => {
await noData.isOnNoDataPage();
await a11y.testAppSnapshot();
});
Expand All @@ -39,7 +39,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {

// a11y violation caught here - if this rest is unskipped remove the test below it.
// https://github.com/elastic/kibana/issues/134139
it.skip('Alerts Page', async function () {
it.skip('a11y tests for Alerts modal remind later button', async function () {
await testSubjects.click('alerts-modal-remind-later-button');
await a11y.testAppSnapshot();
});
Expand All @@ -48,13 +48,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await testSubjects.click('alerts-modal-remind-later-button');
});

it('Kibana Overview', async function () {
it('a11y tests for Kibana Overview', async function () {
await clusterOverview.clickKibanaOverview();
await kibanaOverview.isOnOverview();
await a11y.testAppSnapshot();
});

it('Kibana Instances Page', async function () {
it('a11y tests for Kibana Instances Page', async function () {
await kibanaOverview.isOnOverview();
await kibanaOverview.clickInstanceTab();
await a11y.testAppSnapshot();
Expand Down

0 comments on commit 2a909be

Please sign in to comment.