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] 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 23ec8b9..9934b4c 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"); }); });