Skip to content

Commit

Permalink
v0.1.1 - changelog and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanfern committed Feb 1, 2024
1 parent d6b492d commit 3388e32
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Todos los cambios notables en esta biblioteca se documentarán en este archivo.

## [0.1.1] - 2024-02-01

### Añadido
- Constantes MIN_LENGTH y MAX_LENGTH

### Cambios
- Se analizan las longitudes a partir de las constantes añadidas pasando del máximo limite de 10 a 50.
- Corrección en comentarios

## [0.1.0] - 2024-01-30

### Añadido
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tu-ruc-js-client",
"version": "0.1.0",
"version": "0.1.1",
"description": "Cliente Javascript para la API de TuRuc Paraguay",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const URL = "https://turuc.com.py/api/contribuyente";
const URL = "http://localhost:8080/api/contribuyente";
const MAX_LENGTH = 50;
const MIN_LENGTH = 3;
module.exports = { URL, MAX_LENGTH, MIN_LENGTH};
10 changes: 5 additions & 5 deletions tests/contribuyentes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe("Contribuyentes", () => {
await getContribuyenteBySearch("");
} catch (error) {
expect(error.message).toBe(
"El parámetro search es inválido. Debe tener entre 3 y 10 caracteres."
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres."
);
}
});
Expand All @@ -17,17 +17,17 @@ describe("Contribuyentes", () => {
await getContribuyenteBySearch("1");
} catch (error) {
expect(error.message).toBe(
"El parámetro search es inválido. Debe tener entre 3 y 10 caracteres."
"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 10 caracteres como parametro", async () => {
test("deberia tirar un error si pasamos un string con mas de 50 caracteres como parametro", async () => {
try {
await getContribuyenteBySearch("12345678901");
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 10 caracteres."
"El parámetro search es inválido. Debe tener entre 3 y 50 caracteres."
);
}
});
Expand Down

0 comments on commit 3388e32

Please sign in to comment.