Răsfoiți Sursa

fix VRT spec

Yuki Takei 4 ani în urmă
părinte
comite
851d4bef7e
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      packages/app/test/cypress/support/commands.ts

+ 1 - 1
packages/app/test/cypress/support/commands.ts

@@ -43,7 +43,7 @@ Cypress.Commands.add('collapseSidebar', (isCollapsed) => {
     const isCurrentCollapsed = $contents.hasClass('d-none');
     // toggle when the current state and isCoolapsed is not match
     if (isCurrentCollapsed !== isCollapsed) {
-      cy.getByTestid("grw-navigation-resize-button").click();
+      cy.getByTestid("grw-navigation-resize-button").click({force: true});
     }
   });
 });