Skip to content

Commit

Permalink
Test adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Liza K committed Jul 7, 2020
1 parent d3e8dd7 commit 4d94e83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/functional/apps/discover/_doc_navigation.js
Expand Up @@ -60,13 +60,13 @@ export default function ({ getService, getPageObjects }) {
await docTable.clickRowToggle({ rowIndex: 0 });

const details = await docTable.getDetailsRow();
await docTable.addInclusiveFilter(details, 'bytes');
await docTable.addInclusiveFilter(details, 'referer');

const hasInclusiveFilter = await filterBar.hasFilter('bytes', 'exists', true, false, true);
const hasInclusiveFilter = await filterBar.hasFilter('referer', 'exists', true, false, true);
expect(hasInclusiveFilter).to.be(true);

await docTable.removeInclusiveFilter(details, 'bytes');
const hasExcludeFilter = await filterBar.hasFilter('bytes', 'exists', true, false, false);
await docTable.removeInclusiveFilter(details, 'referer');
const hasExcludeFilter = await filterBar.hasFilter('referer', 'exists', true, false, false);
expect(hasExcludeFilter).to.be(true);
});
});
Expand Down
Binary file not shown.

0 comments on commit 4d94e83

Please sign in to comment.