Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed text README #58

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,27 @@
# Prueba Unitaria con Jest
<!-- endhide -->

> Importante: 💻 Este ejercicio es interactivo! Sigue las instrucciones.
> Importante: 💻 Este ejercicio es interactivo. Sigue las instrucciones.

La mayoría de los desarrolladores hoy en día no solo deben escribir código, sino que también deben escribir código para probar su propio código 😱, sí ... de verdad.
La mayoría de los desarrolladores hoy en día no solo deben escribir código, sino que también deben escribir código para probar su propio código 😱, sí... de verdad.

Hoy usaremos el [jest framework](https://jestjs.io/) para crear nuestras primeras pruebas unitarias.
Hoy usaremos el [framework de Jest](https://jestjs.io/) para crear nuestras primeras pruebas unitarias.

## 🌱 Cómo comenzar este proyecto

Este proyecto viene con los archivos necesarios para comenzar a trabajar de inmediato.

Recomendamos abrir este mismo repositorio usando una herramienta de aprovisionamiento como [Codespaces](https://4geeks.com/es/lesson/tutorial-de-github-codespaces) (recomendado) o [Gitpod](https://4geeks.com/es/lesson/como-utilizar-gitpod). Alternativamente, puedes clonarlo en tu computadora local usando el comando `git clone`.
Recomendamos abrir este mismo repositorio usando un entorno de desarrollo como [Codespaces](https://4geeks.com/es/lesson/tutorial-de-github-codespaces) (recomendado) o [Gitpod](https://4geeks.com/es/lesson/como-utilizar-gitpod). Alternativamente, puedes clonarlo en tu computadora local usando el comando `git clone`.

Este es el repositorio que necesitas abrir:

```
```text
https://github.com/breatheco-de/exercise-unit-test-with-jest.git
```

**👉 Por favor sigue estos pasos en** [cómo comenzar un proyecto de codificación](https://4geeks.com/es/lesson/como-comenzar-un-proyecto-de-codificacion).

**👉 Por favor sigue estos pasos sobre** [cómo comenzar un proyecto de programación](https://4geeks.com/es/lesson/como-comenzar-un-proyecto-de-codificacion).

💡 Importante: Recuerda guardar y cargar tu código en GitHub creando un nuevo repositorio, actualizando el remoto (`git remote set-url origin <your new url>`) y cargando el código en su nuevo repositorio usando los comandos `add`, `commit` y `push` desde el terminal git.
> 💡 Importante: Recuerda guardar y subir tu código a GitHub creando un nuevo repositorio, actualizando el remoto (`git remote set-url origin <your new url>`) y subiendo el código a tu nuevo repositorio usando los comandos `add`, `commit` y `push` desde la terminal de git.

Luego sigue las siguientes instrucciones:

Expand All @@ -32,14 +31,14 @@ Luego sigue las siguientes instrucciones:
3. Entra a la carpeta del ejercicio: `$ cd exercise-unit-test-with-jest`
4. Comienza el ejercicio: `$ learnpack start`

## ¿Sobre que trata este ejercicio?
## ¿Sobre qué trata este ejercicio?

Usaremos la librería JEST para crear un programa capaz de convertir valores numéricos de una divisa a otra:
Usaremos la librería Jest para crear un programa capaz de convertir valores numéricos de una divisa a otra:

| Nombre Función | Descripción |
| Nombre de Función | Descripción |
| ----------------- | --------------------------------------------------------------------- |
| fromDollarToYen | Recibe un monto en dólares y devuelve el monto equivalente en yenes japoneses. |
| fromEuroToDollar | Recibe un monto en euros y devuelve el monto equivalente en dólares estadounidenses.|
| fromYanToPound | Recibe un monto en Yen y devuelve el monto equivalente en libras esterlinas. |
| fromDollarToYen | Recibe un monto en dólares y devuelve el monto equivalente en yenes japoneses |
| fromEuroToDollar | Recibe un monto en euros y devuelve el monto equivalente en dólares estadounidenses|
| fromYanToPound | Recibe un monto en yen y devuelve el monto equivalente en libras esterlinas |

Este y otros proyectos son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Curso de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
Este y otros proyectos son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Cursos de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
# Unit testing with Jest
<!--endhide-->

> Important: 💻 This exercise is interactive. Please follow the instructions.
> Important: 💻 This exercise is interactive. Please follow the instructions.

Most developers today are required not only to write code, but also need to write code to test their own code 😱, yes... really.

Today we are going to be using the [jest framework](https://jestjs.io/) to create our first tests.
Today we are going to be using the [Jest framework](https://jestjs.io/) to create our first tests.

## 🌱 How to start this project
## 🌱 How to start this project

This project comes with the necessary files to start working immediately.

We recommend opening this very same repository using a provisioning tool like [Codespaces](https://4geeks.com/lesson/what-is-github-codespaces) (recommended) or [Gitpod](https://4geeks.com/lesson/how-to-use-gitpod). Alternatively, you can clone it on your local computer using the `git clone` command.

This is the repository you need to open:

```
```text
https://github.com/breatheco-de/exercise-unit-test-with-jest.git
```

**👉 Please follow these steps on** [how to start a coding project](https://4geeks.com/lesson/how-to-start-a-project).


💡 Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (`git remote set-url origin <your new url>`), and uploading the code to your new repository using the `add`, `commit` and `push` commands from the git terminal.
> 💡 Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (`git remote set-url origin <your new url>`), and uploading the code to your new repository using the `add`, `commit` and `push` commands from the git terminal.

Then follow these instructions:

Expand All @@ -37,8 +37,8 @@ We are going to be using the Jest library to build a program capable of converti

| Function name | Description |
| ----------------- | --------------------------------------------------------------------- |
| fromDollarToYen | Receives a dollar amount and returns equivalent amount in Japan Yen |
| fromEuroToDollar | Receives a Euro amount and returns equivalent amount in US Dollar |
| fromYenToPound | Receives a Yen amount and equivalent amount in England Pound |
| fromDollarToYen | Receives a dollar amount and returns the equivalent amount in Japan Yen |
| fromEuroToDollar | Receives a Euro amount and returns the equivalent amount in US Dollar |
| fromYenToPound | Receives a Yen amount and returns the equivalent amount in England Pound |

This and many other projects are built by students as part of the 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) by [Alejandro Sanchez](https://twitter.com/alesanchezr) and many other contributors. Find out more about our [Full Stack Developer Course](https://4geeksacademy.com/us/coding-bootcamps/part-time-full-stack-developer), and [Data Science Bootcamp](https://4geeksacademy.com/us/coding-bootcamps/datascience-machine-learning).
Loading