From 25956d936d64ed21ed81685ee505b1d1352f150c Mon Sep 17 00:00:00 2001 From: DenisN Date: Thu, 20 Mar 2025 09:41:57 -0400 Subject: [PATCH] Hello world --- src/app.controller.spec.ts | 2 +- src/main.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app.controller.spec.ts b/src/app.controller.spec.ts index d22f389..b5f2527 100644 --- a/src/app.controller.spec.ts +++ b/src/app.controller.spec.ts @@ -16,7 +16,7 @@ describe('AppController', () => { describe('root', () => { it('should return "Hello World!"', () => { - expect(appController.getHello()).toBe('Hello World!'); + expect(appController.getHello()).toBe('Hello worlda World!'); }); }); }); diff --git a/src/main.ts b/src/main.ts index f76bc8d..368884c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,7 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(process.env.PORT ?? 3000); + await app.listen(process.env.PORT ?? 9999); + //await app.listen(process.env.PORT ?? 3000); } bootstrap();