added bitacora_mesa
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { BitacoraMesaController } from './bitacora_mesa.controller';
|
||||
import { BitacoraMesaService } from './bitacora_mesa.service';
|
||||
|
||||
describe('BitacoraMesaController', () => {
|
||||
let controller: BitacoraMesaController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [BitacoraMesaController],
|
||||
providers: [BitacoraMesaService],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<BitacoraMesaController>(BitacoraMesaController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user