From 68f727b9173f724ebb054c7ee6016c8669b30eb6 Mon Sep 17 00:00:00 2001 From: Walter Arroyo Caicedo Date: Mon, 10 Jun 2024 08:50:01 -0500 Subject: [PATCH 1/3] Master Actividad MIT --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 6904cd47..8a993129 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,4 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hoal Mundo, un nuevo amanecer"; console.log(hello()); exports.hello = hello; From 2df6f7162b0cd02d000228690fc79f08596d3fff Mon Sep 17 00:00:00 2001 From: Walter Arroyo Caicedo Date: Mon, 10 Jun 2024 17:03:39 -0500 Subject: [PATCH 2/3] Update hello.js --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 8a993129..565f699f 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,4 @@ -const hello = () => "Hoal Mundo, un nuevo amanecer"; +const hello = () => "Hola Mundo, un nuevo amanecer"; console.log(hello()); exports.hello = hello; From 26dc3bff35a5562cac0efa895bbfb26fabc5a372 Mon Sep 17 00:00:00 2001 From: Walter Arroyo Caicedo Date: Mon, 10 Jun 2024 17:04:14 -0500 Subject: [PATCH 3/3] Update hello.test.js --- hello.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.test.js b/hello.test.js index 23ec8b99..1aa52812 100644 --- a/hello.test.js +++ b/hello.test.js @@ -1,6 +1,6 @@ const hello = require("./hello"); describe("My hello", () => { test("works", () => { - expect(hello.hello()).toEqual("Hello World from the Office Hours in the terminal!"); + expect(hello.hello()).toEqual("Hola Mundo, un nuevo amanecer"); }); });