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