feat(api): add listen report endpoint

This commit is contained in:
Julian Tölle 2020-05-09 19:22:17 +02:00
parent ddcdfff89b
commit 3828b841c2
9 changed files with 179 additions and 0 deletions

View file

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