From 9b0e1c38c015d3a14c438db8df5d27273083b19f Mon Sep 17 00:00:00 2001 From: Michael Douglas Barbosa Araujo Date: Wed, 6 Mar 2024 21:20:23 -0300 Subject: [PATCH] Ajuste do teste de nome --- .../validadores/__tests__/Nomes.test.js | 8 ++++++++ 1 file changed, 8 insertions(+) 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); + }); }); });