Files
docmost/apps/server/src/core/comment/comment.service.spec.ts
T
2024-01-09 18:58:26 +01:00

19 lines
467 B
TypeScript

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