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 { TasksController } from './tasks.controller';
import { TasksService } from './tasks.service';
describe('TasksController', () => {
let tasksController: TasksController;
beforeEach(async () => {
const app: TestingModule = await Test.createTestingModule({
controllers: [TasksController],
providers: [TasksService],
}).compile();
tasksController = app.get<TasksController>(TasksController);
});
describe('root', () => {
it('should return "Hello World!"', () => {
expect(tasksController.getHello()).toBe('Hello World!');
});
});
});