validator-brazil
Version:
validacao de cpf e cnpj
24 lines (18 loc) • 699 B
JavaScript
const isCpf = require("../index").isCpf;
describe("cpf validation", () => {
it("should return true to valid cpf wythout hyphen and points", () => {
expect(isCpf("14552586017")).toBeTruthy();
});
it("should return true to valid cpf with hyphen and points", () => {
expect(isCpf("145.525.860-17")).toBeTruthy();
});
it("should return false with letters", () => {
expect(isCpf("14552586017a")).toBeFalsy();
});
it("should return false to invalid cpf wythout hyphen and points", () => {
expect(isCpf("00011122233")).toBeFalsy();
});
it("should return false to invalid cpf with hyphen and points", () => {
expect(isCpf("000.111.222-33")).toBeFalsy();
});
});