chore: migrate backend to monorepo apps and biome

This commit is contained in:
2026-04-03 18:04:59 +03:00
parent 33ca299632
commit 6032451b17
52 changed files with 956 additions and 1198 deletions

View File

@@ -0,0 +1,22 @@
import { Test, TestingModule } from '@nestjs/testing';
import { NotificationsController } from './notifications.controller';
import { NotificationsService } from './notifications.service';
describe('NotificationsController', () => {
let notificationsController: NotificationsController;
beforeEach(async () => {
const app: TestingModule = await Test.createTestingModule({
controllers: [NotificationsController],
providers: [NotificationsService],
}).compile();
notificationsController = app.get<NotificationsController>(NotificationsController);
});
describe('root', () => {
it('should return "Hello World!"', () => {
expect(notificationsController.getHello()).toBe('Hello World!');
});
});
});