We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcbbaab commit 492023cCopy full SHA for 492023c
cypress/e2e/community-list.cy.ts
@@ -49,8 +49,8 @@ describe('Community List Page', () => {
49
// A first <cdk-tree-node> must be found and validate that <a> tag (community name) and <span> tag (item count) exists in it
50
cy.get('ds-community-list').find('cdk-tree-node.expandable-node').then(($nodes) => {
51
cy.wrap($nodes).each(($node) => {
52
- cy.wrap($node).find('a.lead').should('exist');
53
- cy.wrap($node).find('span.badge').should('exist');
+ cy.wrap($node).find('a').should('exist');
+ cy.wrap($node).find('span').should('exist');
54
});
55
56
0 commit comments