From 7306021db330a99b7d60481f1c730edfe6b9502d Mon Sep 17 00:00:00 2001 From: Noel Feliciano Date: Tue, 12 Dec 2023 16:18:16 -0800 Subject: [PATCH 1/2] Hello World --- backend/src/app.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app.service.ts b/backend/src/app.service.ts index 8ce0cf3..b00a667 100644 --- a/backend/src/app.service.ts +++ b/backend/src/app.service.ts @@ -3,6 +3,6 @@ import { Injectable } from "@nestjs/common"; @Injectable() export class AppService { getHello(): string { - return "Hello Backend!"; + return "Hello World!"; } } From df145e823000f359ef75bab3c74a2d12b9505c8c Mon Sep 17 00:00:00 2001 From: Noel Feliciano Date: Tue, 12 Dec 2023 16:26:59 -0800 Subject: [PATCH 2/2] update test --- backend/src/app.controller.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/app.controller.spec.ts b/backend/src/app.controller.spec.ts index 722af67..d22f389 100644 --- a/backend/src/app.controller.spec.ts +++ b/backend/src/app.controller.spec.ts @@ -15,8 +15,8 @@ describe('AppController', () => { }); describe('root', () => { - it('should return "Hello Backend!"', () => { - expect(appController.getHello()).toBe('Hello Backend!'); + it('should return "Hello World!"', () => { + expect(appController.getHello()).toBe('Hello World!'); }); }); });