-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use .should('be.empty') assertion
Since it's not as precise as `.should('have.value', '')`.
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', () => { | ||
|
@@ -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]') | ||
|
@@ -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', () => { | ||
|