Skip to content

Commit

Permalink
Ajuste do teste de Estado
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldouglas committed Mar 7, 2024
1 parent f6eb796 commit f9b3e14
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const Estados = require("../Estados");

describe("[Suite_Testes_1093_Projeto][Estados] Suíte de testes módulo (estados)", () => {
test("Deve retornar true para um estado válido exemplo: São Paulo", () => {
const estado = new Estados("São Paulo"); // SP // SP São Paulo // SP - São Paulo
expect(estado.valido).toBe(true);
});
});

0 comments on commit f9b3e14

Please sign in to comment.