Add monitoring module

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-26 21:36:28 +02:00
parent f98bf0d32d
commit eab06c0296
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
6 changed files with 83 additions and 1 deletions

View file

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