Skip to content

Commit

Permalink
Ajuste do teste de nome
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldouglas committed Mar 7, 2024
1 parent 8acc612 commit 9b0e1c3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@ describe("[Suite_Testes_1093_Projeto][Nomes] Suíte de testes módulo (nome)", (
test("Deve retornar false para um nome vazio por exemplo: '' ", () => {
expect(Nomes("")).toBe(false);
});

test("Deve retornar false para um nome com apenas espaços em branco por exemplo: ' ' ", () => {
expect(Nomes(" ")).toBe(false);
});

test("Deve retornar false para um nome com caracteres especiais por exemplo: teste@teste.com.br", () => {
expect(Nomes("teste@teste.com.br")).toBe(false);
});
});
});

0 comments on commit 9b0e1c3

Please sign in to comment.