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 { ReportsController } from './reports.controller';
describe('Reports Controller', () => {
let controller: ReportsController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [ReportsController],
}).compile();
controller = module.get<ReportsController>(ReportsController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});