/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ 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); }); it('should be defined', () => { expect(service).toBeDefined(); }); });