From 113e3e550e250c9fb3309343331987456b603082 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 9 Sep 2023 22:44:00 -0600 Subject: [PATCH 1/3] updated city --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 008839c2..f8399152 100644 --- a/hello.js +++ b/hello.js @@ -1,3 +1,3 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hola mundo desde Tegucigalpa, Honduras!"; console.log(hello()); exports.hello = hello; From 6f777927bc3964d714802363f592471726dd6d07 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 9 Sep 2023 22:44:14 -0600 Subject: [PATCH 2/3] ciudad --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index f8399152..d14971f7 100644 --- a/hello.js +++ b/hello.js @@ -1,3 +1,3 @@ -const hello = () => "Hola mundo desde Tegucigalpa, Honduras!"; +const hello = () => "Hola mundo desde Tegucigalpa, Honduras!!"; console.log(hello()); exports.hello = hello; From 4099e819c8334321eef629b8d83121dbcce33beb Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 10 Sep 2023 09:26:33 -0600 Subject: [PATCH 3/3] Updated test js file --- hello.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.test.js b/hello.test.js index 23ec8b99..35162708 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 desde Tegucigalpa, Honduras!!"); }); });