file profesor

This commit is contained in:
TuNombreDeUsuario
2024-06-14 15:33:11 -06:00
parent ed6669b9de
commit e99ae7cf02
8 changed files with 56 additions and 34 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { profesorController } from './profesor.controller';
describe('ProfesorController', () => {
let controller: profesorController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [profesorController],
}).compile();
controller = module.get<profesorController>(profesorController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});