Skip to content

Commit

Permalink
yet another fix for a missing chainer
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocoldwell authored and ob6160 committed Jul 13, 2023
1 parent 08fa8ec commit ed1a773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/desktop/add.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ describe('Adding new toilets to the platform', () => {
cy.get('[name=tuesday-opens]').should('have.value', '08:00');
cy.get('[name=tuesday-closes]').should('have.value', '16:00');

cy.get('[name=wednesday-opens]').contains('');
cy.get('[name=wednesday-closes]').contains('');
cy.get('[name=wednesday-opens]').should('have.value', '');
cy.get('[name=wednesday-closes]').contains('have.value', '');

//If user disables edit all hours, disables editing
cy.get('[name=edit-all-day-hours]').click();
Expand Down

0 comments on commit ed1a773

Please sign in to comment.