Explorar o código

change command order

Yohei-Shiina %!s(int64=3) %!d(string=hai) anos
pai
achega
32ea62c911
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/app/test/cypress/support/commands.ts

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

@@ -45,8 +45,8 @@ Cypress.Commands.add('login', (username, password) => {
  * use only for the pages which use component with skeleton
  */
 Cypress.Commands.add('waitUntilSkeletonDisappear', () => {
-  cy.get('.grw-skeleton').should('not.exist');
   cy.get('.grw-skeleton').should('exist');
+  cy.get('.grw-skeleton').should('not.exist');
 });
 
 let isSidebarCollapsed: boolean | undefined;