multer listo

This commit is contained in:
xXpuma99Xx
2022-04-23 23:55:07 -05:00
parent 3194b12417
commit 08ae09f2d7
8 changed files with 153 additions and 0 deletions
@@ -0,0 +1,18 @@
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>(UploadFileController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});