Yuki Takei пре 4 година
родитељ
комит
852e145378

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

@@ -19,10 +19,8 @@ context('Access to page', () => {
   it('/Sandbox with anchor hash is successfully loaded', () => {
   it('/Sandbox with anchor hash is successfully loaded', () => {
     cy.visit('/Sandbox#Headers');
     cy.visit('/Sandbox#Headers');
 
 
-    // wait until opacity is 1.
-    cy.getByTestid('grw-fab')
-      .invoke('show')
-      .should('have.css', 'opacity', '1');
+    // hide fab
+    cy.getByTestid('grw-fab-container').invoke('attr', 'style', 'display: none');
 
 
     cy.screenshot(`${ssPrefix}-sandbox-headers`);
     cy.screenshot(`${ssPrefix}-sandbox-headers`);
   });
   });