Angular Effects - how to get 100 percent test result (coverage in funcs )?
问题 here is my effects: import { Injectable } from '@angular/core'; import { Action } from '@ngrx/store'; import { Actions, createEffect, ofType } from '@ngrx/effects'; import { of, Observable } from 'rxjs'; import { catchError, map, switchMap } from 'rxjs/operators'; import * as courseAttributeActions from '../actions/candidate-registration-management.action'; import { CandidateRegistrationManagementService } from '../../services/candidate-registration-management.service'; @Injectable() export