hedgedoc/backend/src/monitoring/monitoring.service.spec.ts
Tilman Vatteroth bf30cbcf48 fix(repository): Move backend code into subdirectory
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-10-30 22:46:42 +01:00

24 lines
616 B
TypeScript

/*
* 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>(MonitoringService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});