From 14d0917e59751b3b91835a0871eb036d1c7fc31e Mon Sep 17 00:00:00 2001 From: Shakra-cloud <146705105+Shakra-cloud@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:16:05 +0400 Subject: [PATCH 1/4] Hello --- hello.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 008839c..2931b92 100644 --- a/hello.js +++ b/hello.js @@ -1,3 +1,5 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hello World from Oman"; console.log(hello()); exports.hello = hello; +on: +push \ No newline at end of file From 3740e6473c0a60d3285fcff70ba066e66279021b Mon Sep 17 00:00:00 2001 From: Shakra-cloud <146705105+Shakra-cloud@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:21:31 +0400 Subject: [PATCH 2/4] Hello --- hello.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hello.js b/hello.js index 2931b92..42370e1 100644 --- a/hello.js +++ b/hello.js @@ -1,5 +1,3 @@ const hello = () => "Hello World from Oman"; console.log(hello()); -exports.hello = hello; -on: -push \ No newline at end of file +exports.hello = hello; \ No newline at end of file From 6efb01ea59a37448218230b8650e403cc2053c8c Mon Sep 17 00:00:00 2001 From: Shakra-cloud <146705105+Shakra-cloud@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:24:57 +0400 Subject: [PATCH 3/4] Hello --- hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.js b/hello.js index 42370e1..36c9034 100644 --- a/hello.js +++ b/hello.js @@ -1,3 +1,3 @@ -const hello = () => "Hello World from Oman"; +const hello = () => "Hello World from Oman!"; console.log(hello()); exports.hello = hello; \ No newline at end of file From 238cbf9fc3eac423c96f033f6cfa5042a82b8979 Mon Sep 17 00:00:00 2001 From: Shakra-cloud <146705105+Shakra-cloud@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:30:31 +0400 Subject: [PATCH 4/4] Hello --- hello.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.test.js b/hello.test.js index 23ec8b9..011b8d2 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 from Oman!"); }); });