Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions src/platform/test/accessibility/apps/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const listingTable = getService('listingTable');

// https://github.com/elastic/kibana/issues/220515
describe.skip('Dashboard', () => {
describe('Dashboard', () => {
const dashboardName = 'Dashboard Listing A11y';
const clonedDashboardName = 'Dashboard Listing A11y (1)';

// https://github.com/elastic/kibana/issues/220515
it.skip('navigate to dashboard app', async () => {
it('navigate to dashboard app', async () => {
await common.navigateToApp('dashboard');
await a11y.testAppSnapshot();
});
Expand Down Expand Up @@ -118,14 +116,12 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await a11y.testAppSnapshot();
});

// https://github.com/elastic/kibana/issues/153597
it.skip('Test full screen', async () => {
it('Test full screen', async () => {
await dashboard.clickFullScreenMode();
await a11y.testAppSnapshot();
});

// https://github.com/elastic/kibana/issues/153597
it.skip('Exit out of full screen mode', async () => {
it('Exit out of full screen mode', async () => {
await dashboard.exitFullScreenMode();
await a11y.testAppSnapshot();
});
Expand Down