From 492023ce22f63b6e7fd7d7350eda2a8fa46020a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Chaco=CC=81n?= Date: Wed, 14 May 2025 00:41:10 -0600 Subject: [PATCH] removed unnecessary class on name/span validation --- cypress/e2e/community-list.cy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/community-list.cy.ts b/cypress/e2e/community-list.cy.ts index 3172933405..e8678e0b9c 100644 --- a/cypress/e2e/community-list.cy.ts +++ b/cypress/e2e/community-list.cy.ts @@ -49,8 +49,8 @@ describe('Community List Page', () => { // A first must be found and validate that tag (community name) and tag (item count) exists in it cy.get('ds-community-list').find('cdk-tree-node.expandable-node').then(($nodes) => { cy.wrap($nodes).each(($node) => { - cy.wrap($node).find('a.lead').should('exist'); - cy.wrap($node).find('span.badge').should('exist'); + cy.wrap($node).find('a').should('exist'); + cy.wrap($node).find('span').should('exist'); }); }); });