-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lint: se arregla formateo y warnings del linter
- Loading branch information
1 parent
91c88da
commit 896dc14
Showing
3 changed files
with
164 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
const { | ||
getContribuyenteBySearch, | ||
getContribuyenteByRucOrCI, | ||
getContribuyenteBySearch, | ||
getContribuyenteByRucOrCI, | ||
} = require("./contribuyentes"); | ||
|
||
module.exports = { | ||
getContribuyenteBySearch, | ||
getContribuyenteByRucOrCI, | ||
getContribuyenteBySearch, | ||
getContribuyenteByRucOrCI, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,59 @@ | ||
const { getContribuyenteBySearch } = require("../src/contribuyentes"); | ||
|
||
const { describe, test, expect } = require("@jest/globals"); | ||
|
||
describe("Contribuyentes", () => { | ||
describe("getContribuyenteBySearch", () => { | ||
test("deberia tirar un error si pasamos un string vacio como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch(""); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
describe("getContribuyenteBySearch", () => { | ||
test("deberia tirar un error si pasamos un string vacio como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch(""); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
|
||
test("deberia tirar un error si pasamos un string con menos de 3 caracteres como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("1"); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
test("deberia tirar un error si pasamos un string con menos de 3 caracteres como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("1"); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
|
||
test("deberia tirar un error si pasamos un string con mas de 50 caracteres como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez"); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
test("deberia tirar un error si pasamos un string con mas de 50 caracteres como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch( | ||
"Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez Juan Perez" | ||
); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres." | ||
); | ||
} | ||
}); | ||
|
||
test("deberia tirar un error si pasamos un offset negativo como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("123", -1); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro offset es inválido. Debe ser un número mayor o igual a 0." | ||
); | ||
} | ||
}); | ||
test("deberia tirar un error si pasamos un offset negativo como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("123", -1); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro offset es inválido. Debe ser un número mayor o igual a 0." | ||
); | ||
} | ||
}); | ||
|
||
test("deberia tirar un error si pasamos un offset que no es un numero como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("123", "a"); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro offset es inválido. Debe ser un número mayor o igual a 0." | ||
); | ||
} | ||
}); | ||
}); | ||
test("deberia tirar un error si pasamos un offset que no es un numero como parametro", async () => { | ||
try { | ||
await getContribuyenteBySearch("123", "a"); | ||
} catch (error) { | ||
expect(error.message).toBe( | ||
"El parámetro offset es inválido. Debe ser un número mayor o igual a 0." | ||
); | ||
} | ||
}); | ||
}); | ||
}); |