Skip to content

Commit

Permalink
Do not use .should('be.empty') assertion
Browse files Browse the repository at this point in the history
Since it's not as precise as `.should('have.value', '')`.
  • Loading branch information
wlsf82 committed Jun 16, 2024
1 parent 06715d5 commit e501eb6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cypress/e2e/CAC-TAT.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ describe('Central de Atendimento ao Cliente TAT', () => {
cy.get('#phone')
.type('abcde')
.should('have.value', '')
// ou
.should('be.empty')
})

it('exibe mensagem de erro quando o telefone se torna obrigatório mas não é preenchido antes do envio do formulário', () => {
Expand Down Expand Up @@ -76,7 +74,7 @@ describe('Central de Atendimento ao Cliente TAT', () => {
.type('Lima e Silva Filho')
.should('have.value', 'Lima e Silva Filho')
.clear()
.should('be.empty')
.should('have.value', '')
cy.get('#email')
.type('[email protected]')
.should('have.value', '[email protected]')
Expand All @@ -86,7 +84,7 @@ describe('Central de Atendimento ao Cliente TAT', () => {
.type('12345678989')
.should('have.value', '12345678989')
.clear()
.should('be.empty')
.should('have.value', '')
})

it('exibe mensagem de erro ao submeter o formulário sem preencher os campos obrigatórios', () => {
Expand Down

0 comments on commit e501eb6

Please sign in to comment.