introduce the database and controller connections for all inbounds
This commit is contained in:
18
src/inbound/inbound.controller.spec.ts
Normal file
18
src/inbound/inbound.controller.spec.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { InboundController } from './inbound.controller';
|
||||
|
||||
describe('InboundController', () => {
|
||||
let controller: InboundController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [InboundController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<InboundController>(InboundController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user