Fix end 2 end test

pull/2081/head
Johan Girod 2022-03-31 17:44:00 +02:00
parent 1b31f74c59
commit f0b2a04746
1 changed files with 7 additions and 10 deletions

View File

@ -33,21 +33,18 @@ describe('Simulateur salarié', function () {
})
it('should permit customizing the number of worked hours and clear the input value', function () {
cy.get(
'#contrat\\ salarié\\ \\.\\ temps\\ de\\ travail\\ \\.\\ temps\\ partiel\\ \\.\\ heures\\ par\\ semaine'
).type(25)
cy.contains('Voir ma situation').click()
cy.contains('Heures par semaine').next().find('button').click()
cy.focused().type(25)
cy.wait(500)
cy.contains('Fermer').click()
cy.get(
'#contrat\\ salarié\\ \\.\\ rémunération\\ \\.\\ net\\ après\\ impôt'
).should(($input) => {
expect(+$input.val().replace(/[\s,.€]/g, '')).to.be.below(1000)
})
cy.focused().clear()
cy.get(
'#contrat\\ salarié\\ \\.\\ rémunération\\ \\.\\ net\\ après\\ impôt'
).should(($input) => {
expect(+$input.val().replace(/[\s,.€]/g, '')).to.be.above(1000)
})
})
})
})