(project): Initial commit

This commit is contained in:
2025-12-22 17:33:10 +01:00
commit 604bd08dba
37 changed files with 3351 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const _testing = require("@nestjs/testing");
const _appcontroller = require("./app.controller");
const _appservice = require("./app.service");
describe('AppController', ()=>{
let appController;
beforeEach(async ()=>{
const app = await _testing.Test.createTestingModule({
controllers: [
_appcontroller.AppController
],
providers: [
_appservice.AppService
]
}).compile();
appController = app.get(_appcontroller.AppController);
});
describe('root', ()=>{
it('should return "Hello World!"', ()=>{
expect(appController.getHello()).toBe('Hello World!');
});
});
});
//# sourceMappingURL=app.controller.spec.js.map