diff --git a/Turma1093/aula4/SistemaDeValidacao/validadores/__tests__/Nomes.test.js b/Turma1093/aula4/SistemaDeValidacao/validadores/__tests__/Nomes.test.js index 8c80cc0a..ce81d762 100644 --- a/Turma1093/aula4/SistemaDeValidacao/validadores/__tests__/Nomes.test.js +++ b/Turma1093/aula4/SistemaDeValidacao/validadores/__tests__/Nomes.test.js @@ -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); + }); }); });