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 f5ce630 commit 149feeeCopy full SHA for 149feee
cypress/e2e/homepage.cy.ts
@@ -26,6 +26,12 @@ describe('Homepage', () => {
26
// Wait for homepage tag to appear
27
cy.get('ds-home-page').should('be.visible');
28
29
+ // Wait for at least one loading component to show up
30
+ cy.get('ds-loading').should('exist');
31
+
32
+ // Wait until all loading components have disappeared
33
+ cy.get('ds-loading').should('not.exist');
34
35
// Analyze <ds-home-page> for accessibility issues
36
testA11y('ds-home-page');
37
});
0 commit comments