Skip to content

Commit

Permalink
fixing type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyarm committed Mar 5, 2020
1 parent 7a71368 commit 92358c8
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions test/accessibility/apps/discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,12 @@
import { FtrProviderContext } from '../ftr_provider_context';

export default function({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects([
'common',
'discover',
'header',
'share',
'timePicker',
'home',
]);
const PageObjects = getPageObjects(['common', 'discover', 'header', 'share', 'timePicker']);
const a11y = getService('a11y');
const esArchiver = getService('esArchiver');
const kibanaServer = getService('kibanaServer');
const inspector = getService('inspector');
const filterBar = getService('filterBar');
const docTable = getService('docTable');
const TEST_COLUMN_NAMES = ['@message'];
const TEST_FILTER_COLUMN_NAMES = [
['extension', 'jpg'],
Expand Down Expand Up @@ -107,7 +99,6 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
await a11y.testAppSnapshot();
});

// unable to validate on EUI pop-over
it('click share button', async () => {
await PageObjects.share.clickShareTopNavButton();
await a11y.testAppSnapshot();
Expand Down

0 comments on commit 92358c8

Please sign in to comment.