Skip to content

Commit

Permalink
fix additional discover tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyarm committed Mar 11, 2020
1 parent 91e6bd2 commit 425867d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/accessibility/apps/discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
await a11y.testAppSnapshot();
});

// skipping the test for new because we can't fix it right now
it('Click on new to clear the search', async () => {
it.skip('Click on new to clear the search', async () => {
await PageObjects.discover.clickNewSearchButton();
await a11y.testAppSnapshot();
});
Expand Down Expand Up @@ -132,10 +131,8 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {

// Context view test
it('should open context view on a doc', async () => {
const firstTimestamp = (await docTable.getFields())[0][0];
// navigate to the context view
await docTable.clickRowToggle({ rowIndex: 0 });
await (await docTable.getRowActions({ rowIndex: 0 }))[0].click();
await docTable.clickRowToggle();
await (await docTable.getRowActions())[0].click();
await a11y.testAppSnapshot();
});

Expand Down

0 comments on commit 425867d

Please sign in to comment.