A better you can try to convert your service as Type and then use injector like this:
import { Type } from '@angular/core';
fixture.debugElement.injector.get<MyService>(MyService as Type<MyService>)
A better you can try to convert your service as Type and then use injector like this:
import { Type } from '@angular/core';
fixture.debugElement.injector.get<MyService>(MyService as Type<MyService>)