import {CommentDialogService} from '@shared/modules/comment-dialog/service/comment-dialog.service'; import {ComponentType} from '@angular/cdk/overlay'; import {NbDialogConfig} from '@nebular/theme'; import {Observable, of} from 'rxjs'; import {Comment} from '@shared/models/comment.model'; export class CommentDialogServiceMock implements Required { dialog: any; openCommentDialog( componentOrTemplateRef: ComponentType, findingIds: [], comment: Comment | undefined, config: Partial | string>> | undefined): Observable { return of(undefined); } }