Skip to content

Commit 0801cbb

Browse files
committed
ADd spanish videos
1 parent 9a55525 commit 0801cbb

File tree

10 files changed

+41
-0
lines changed

10 files changed

+41
-0
lines changed

.learn/exercises/00-welcome/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=r2L0FfAHdqI"
3+
---
4+
15
# Welcome to Unit Testing!
26

37
¡Estamos muy feliz de tenerte aquí! 🎉 😂

.learn/exercises/01-setup-our-project/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=XoBAX5loFEk"
3+
---
4+
15
# `01` Setup our project
26

37
Hay muy buenas alternativas para crear pruebas unitarias usando JavaScript o Node como: Mocha, Jasmin o Jest.

.learn/exercises/02-choosing-your-framework/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=rWeobGKEExk"
3+
---
4+
15
# `02` Choosing your framework
26

37
Ahora es el momento de instalar Jest.

.learn/exercises/03-entry-point/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=GCe_bJMpbMU"
3+
---
4+
15
# `03` Entry Point
26

37
¡Ok, ya hemos instalado Jest exitosamente! y lo usaremos pronto...

.learn/exercises/04-our-first-function/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=LuDQRz11QOU"
3+
---
4+
15
# `04` Our first function
26

37
Para crear un pequeño ejemplo, queremos que llenes el contenido de `app.js` con la función: `sum`, que sume dos números dados.

.learn/exercises/05-Test-file/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=sr_KWVnIc1Q"
3+
---
4+
15
# `05` Test File
26

37
¡Asombroso! Nuestra función `sum` está sumando números correctamente.

.learn/exercises/06-your-first-test/README.es.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=2PVKwUsgTHU"
3+
---
4+
5+
16
# `06` Your first test
27

38
## 📝 Instrucciones:

.learn/exercises/07-running-the-test/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=QZ_aEcCq-TU"
3+
---
4+
15
# `07` Running the test
26

37
Antes de ejecutar nuestra prueba, tenemos que actualizar nuestro archivo `package.json` para especificar el comando `test` con la palabra `jest` de la siguiente manera:

.learn/exercises/07.1-analysing-the-test/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=rhQvCSp4Uqw"
3+
---
4+
15
# `07.1` Analyzing the test
26

37
¿Qué acaba de suceder?

.learn/exercises/08-planning/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=XtWhSg2Dfn0"
3+
---
4+
15
# `08` Planning Our Functionalities
26

37
El primer paso en cada aplicación es pensar sobre los requisitos del proyecto y cómo desarrollarlos.

0 commit comments

Comments
 (0)