nestjs rewrite

This commit is contained in:
popovspiridon99
2025-08-01 11:33:40 +09:00
parent 145827ab6d
commit 37bfa912a0
58 changed files with 17130 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { TilesController } from './tiles.controller';
describe('TilesController', () => {
let controller: TilesController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [TilesController],
}).compile();
controller = module.get<TilesController>(TilesController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});