introduce the database and controller connections for all inbounds

This commit is contained in:
Sven Czarnian
2022-10-23 16:58:00 +02:00
parent 7a41dd0fb2
commit f69e365623
19 changed files with 849 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { InboundService } from './inbound.service';
describe('InboundService', () => {
let service: InboundService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [InboundService],
}).compile();
service = module.get<InboundService>(InboundService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});