Skip to content

Commit

Permalink
[Discover] add check lack of multifieldBadge
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaanj committed Jun 29, 2021
1 parent 37b5b41 commit d4b5ad3
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,8 +435,19 @@ describe('DocViewTable at Discover Doc with Fields API', () => {
expect(findTestSubject(component, 'tableDocViewRow-customer_first_name.keyword').length).toBe(
0
);

expect(findTestSubject(component, 'tableDocViewRow-customer_first_name.nickname').length).toBe(
0
);

expect(
findTestSubject(component, 'tableDocViewRow-customer_first_name.keyword-multifieldBadge')
.length
).toBe(0);

expect(
findTestSubject(component, 'tableDocViewRow-customer_first_name.nickname-multifieldBadge')
.length
).toBe(0);
});
});

0 comments on commit d4b5ad3

Please sign in to comment.