Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
willydouhard committed Feb 8, 2025
1 parent 098097e commit f345dad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/update_step/spec.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe('Update Step', () => {
cy.get(`#step-tool1`).click();
cy.get('.step').should('have.length', 2);
cy.get('.step').eq(0).should('contain', 'Hello!');
cy.get(`#step-tool1`).parent().should('contain', 'Foo');
cy.get(`#step-tool1`).parent().parent().should('contain', 'Foo');

cy.get('.step').eq(0).should('contain', 'Hello again!');
cy.get(`#step-tool1`).parent().should('contain', 'Foo Bar');
cy.get(`#step-tool1`).parent().parent().should('contain', 'Foo Bar');
});
});

0 comments on commit f345dad

Please sign in to comment.