Răsfoiți Sursa

Merge pull request #5688 from weseek/fix/vrt-for-sandbox-with-anchor-hash

fix: VRT for /Sandbox with anchor hash
Yuki Takei 4 ani în urmă
părinte
comite
2700313526

+ 4 - 1
packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts

@@ -20,7 +20,10 @@ context('Access to page', () => {
     cy.visit('/Sandbox#Headers');
 
     // wait until opacity is 1.
-    cy.getByTestid('grw-fab-create-page').should('have.css', 'opacity', '1')
+    cy.getByTestid('grw-fab-create-page')
+      .should('be.visible')
+      .should('have.class', 'fadeInUp')
+      .should('have.css', 'opacity', '1');
 
     cy.screenshot(`${ssPrefix}-sandbox-headers`);
   });