Hello world

main
DenisN 2025-03-20 09:41:57 -04:00
parent b34acee5be
commit 25956d936d
2 changed files with 3 additions and 2 deletions

View File

@ -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!');
});
});
});

View File

@ -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();