Skip to content

Commit

Permalink
Ajuste do nome
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldouglas committed Mar 7, 2024
1 parent c1f8be2 commit 8acc612
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ const Nomes = require("../Nomes");
describe("[Suite_Testes_1093_Projeto][Nomes] Suíte de testes módulo (nome)", () => {
// Testes da versão 1
describe("[VERSAO_1] Regra de negócios v1", () => {
test("Deve retornar true para um nome válido por exemplo: João Silva", () => {
test("Deve retornar false para um nome que não está válido por exemplo: João Silva", () => {
expect(Nomes("João Silva")).toBe(false);
});

test("Deve retornar false para um nome vazio por exemplo: '' ", () => {
expect(Nomes("")).toBe(false);
});
});
});

0 comments on commit 8acc612

Please sign in to comment.