Yuki Takei 4 년 전
부모
커밋
852e145378
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts

+ 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', () => {
     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`);
   });