diff --git a/projects/elements-demo/src/app/features/examples/testing/testing.component.ts b/projects/elements-demo/src/app/features/examples/testing/testing.component.ts index 4ea3fe6..99c808b 100644 --- a/projects/elements-demo/src/app/features/examples/testing/testing.component.ts +++ b/projects/elements-demo/src/app/features/examples/testing/testing.component.ts @@ -48,11 +48,11 @@ describe('FeatureComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [FeatureComponent, MockElementComponent], + imports: [FeatureComponent], }) .overrideComponent(FeatureComponent, { remove: { imports: [ LazyElementDirective ] }, - add: { imports: [ LazyElementTestingDirective ] } + add: { imports: [ LazyElementTestingDirective, MockElementComponent ] } }) .compileComponents(); });