From 27b828481c1676c343bd2739f32fa62166486f99 Mon Sep 17 00:00:00 2001 From: Facundo Gangemi <150297251+F4cu81@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:50:48 +0200 Subject: [PATCH 1/4] Update hello.js --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 6904cd47..47b26af7 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,4 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hello World Facu desde casa"; console.log(hello()); exports.hello = hello; From 9e148cb20feba93ee03dc69503f03bc91298bbdd Mon Sep 17 00:00:00 2001 From: Facundo Gangemi <150297251+F4cu81@users.noreply.github.com> Date: Wed, 14 Aug 2024 19:32:40 +0200 Subject: [PATCH 2/4] 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..9934b4c0 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("Hello World Facu desde casa"); }); }); From 7d6915313a053ceb8c7a52f116738ffe9e3c92c0 Mon Sep 17 00:00:00 2001 From: Facundo Gangemi <150297251+F4cu81@users.noreply.github.com> Date: Wed, 14 Aug 2024 19:35:08 +0200 Subject: [PATCH 3/4] 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 9934b4c0..b724c56e 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 Facu desde casa"); + expect(hello.hello()).toEqual("Hello World"); }); }); From 8d47ef2c5d15fd11a56383f3eb24e4f74f976d0b Mon Sep 17 00:00:00 2001 From: Facundo Gangemi <150297251+F4cu81@users.noreply.github.com> Date: Wed, 14 Aug 2024 19:35:43 +0200 Subject: [PATCH 4/4] Update hello.js --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 47b26af7..a0d276c1 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,4 @@ -const hello = () => "Hello World Facu desde casa"; +const hello = () => "Hello World"; console.log(hello()); exports.hello = hello;