0

for all my components who have dependencies in their constructor, when I do the "compileComponents" I have an error : Error: Can't resolve all parameters for AsciiCharacterComponent: (?).

I include those dependencies with providers:

someMock = {...}
TestBed.configureTestingModule({
      declarations: [AsciiCharacterComponent, AsciiComponent],
      imports: [],
      providers: [
        {
          provide: SomeService,
          useValue: someMock
        },
      ],
    }).compileComponents();

note that if I use:

providers: [SomeService]

It work.

Any idea?

sab
  • 4,352
  • 7
  • 36
  • 60

0 Answers0