From 0801cbb7a3f3a3e6fc99635f18553d738be3331f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charly=20Chac=C3=B3n?= <107764250+Charlytoc@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:52:17 +0000 Subject: [PATCH] ADd spanish videos --- .learn/exercises/00-welcome/README.es.md | 4 ++++ .learn/exercises/01-setup-our-project/README.es.md | 4 ++++ .learn/exercises/02-choosing-your-framework/README.es.md | 4 ++++ .learn/exercises/03-entry-point/README.es.md | 4 ++++ .learn/exercises/04-our-first-function/README.es.md | 4 ++++ .learn/exercises/05-Test-file/README.es.md | 4 ++++ .learn/exercises/06-your-first-test/README.es.md | 5 +++++ .learn/exercises/07-running-the-test/README.es.md | 4 ++++ .learn/exercises/07.1-analysing-the-test/README.es.md | 4 ++++ .learn/exercises/08-planning/README.es.md | 4 ++++ 10 files changed, 41 insertions(+) diff --git a/.learn/exercises/00-welcome/README.es.md b/.learn/exercises/00-welcome/README.es.md index 96a2bd24..17462efd 100644 --- a/.learn/exercises/00-welcome/README.es.md +++ b/.learn/exercises/00-welcome/README.es.md @@ -1,3 +1,7 @@ +--- +intro: "https://www.youtube.com/watch?v=r2L0FfAHdqI" +--- + # Welcome to Unit Testing! ¡Estamos muy feliz de tenerte aquí! 🎉 😂 diff --git a/.learn/exercises/01-setup-our-project/README.es.md b/.learn/exercises/01-setup-our-project/README.es.md index 4d14a11e..6005f3d6 100644 --- a/.learn/exercises/01-setup-our-project/README.es.md +++ b/.learn/exercises/01-setup-our-project/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=XoBAX5loFEk" +--- + # `01` Setup our project Hay muy buenas alternativas para crear pruebas unitarias usando JavaScript o Node como: Mocha, Jasmin o Jest. diff --git a/.learn/exercises/02-choosing-your-framework/README.es.md b/.learn/exercises/02-choosing-your-framework/README.es.md index f4594790..a92c6928 100644 --- a/.learn/exercises/02-choosing-your-framework/README.es.md +++ b/.learn/exercises/02-choosing-your-framework/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=rWeobGKEExk" +--- + # `02` Choosing your framework Ahora es el momento de instalar Jest. diff --git a/.learn/exercises/03-entry-point/README.es.md b/.learn/exercises/03-entry-point/README.es.md index 97761c0d..40bb2551 100644 --- a/.learn/exercises/03-entry-point/README.es.md +++ b/.learn/exercises/03-entry-point/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=GCe_bJMpbMU" +--- + # `03` Entry Point ¡Ok, ya hemos instalado Jest exitosamente! y lo usaremos pronto... diff --git a/.learn/exercises/04-our-first-function/README.es.md b/.learn/exercises/04-our-first-function/README.es.md index f4f47d61..1bbee7f0 100644 --- a/.learn/exercises/04-our-first-function/README.es.md +++ b/.learn/exercises/04-our-first-function/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=LuDQRz11QOU" +--- + # `04` Our first function 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. diff --git a/.learn/exercises/05-Test-file/README.es.md b/.learn/exercises/05-Test-file/README.es.md index 192a2464..6b88347d 100644 --- a/.learn/exercises/05-Test-file/README.es.md +++ b/.learn/exercises/05-Test-file/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=sr_KWVnIc1Q" +--- + # `05` Test File ¡Asombroso! Nuestra función `sum` está sumando números correctamente. diff --git a/.learn/exercises/06-your-first-test/README.es.md b/.learn/exercises/06-your-first-test/README.es.md index 5f852f14..93e1bd0c 100644 --- a/.learn/exercises/06-your-first-test/README.es.md +++ b/.learn/exercises/06-your-first-test/README.es.md @@ -1,3 +1,8 @@ +--- +tutorial: "https://www.youtube.com/watch?v=2PVKwUsgTHU" +--- + + # `06` Your first test ## 📝 Instrucciones: diff --git a/.learn/exercises/07-running-the-test/README.es.md b/.learn/exercises/07-running-the-test/README.es.md index ce734fe2..7812ea30 100644 --- a/.learn/exercises/07-running-the-test/README.es.md +++ b/.learn/exercises/07-running-the-test/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=QZ_aEcCq-TU" +--- + # `07` Running the test 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: diff --git a/.learn/exercises/07.1-analysing-the-test/README.es.md b/.learn/exercises/07.1-analysing-the-test/README.es.md index 317daf77..df313809 100644 --- a/.learn/exercises/07.1-analysing-the-test/README.es.md +++ b/.learn/exercises/07.1-analysing-the-test/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=rhQvCSp4Uqw" +--- + # `07.1` Analyzing the test ¿Qué acaba de suceder? diff --git a/.learn/exercises/08-planning/README.es.md b/.learn/exercises/08-planning/README.es.md index c00ce1f3..9ec4b3ec 100644 --- a/.learn/exercises/08-planning/README.es.md +++ b/.learn/exercises/08-planning/README.es.md @@ -1,3 +1,7 @@ +--- +tutorial: "https://www.youtube.com/watch?v=XtWhSg2Dfn0" +--- + # `08` Planning Our Functionalities El primer paso en cada aplicación es pensar sobre los requisitos del proyecto y cómo desarrollarlos.