From a7987ac62731f8965350f54a484cf43f1d9fca42 Mon Sep 17 00:00:00 2001 From: andriikamaldinov1 Date: Tue, 28 Nov 2023 17:02:11 +0200 Subject: [PATCH] feat(no-ref): update v17, control flow v17 --- src/app/cards/cards.component.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/cards/cards.component.spec.ts b/src/app/cards/cards.component.spec.ts index ada2491..4d73ad4 100644 --- a/src/app/cards/cards.component.spec.ts +++ b/src/app/cards/cards.component.spec.ts @@ -1,6 +1,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CardsComponent } from './cards.component'; +import { TrackByService } from '@libraries/track-by/track-by.service'; describe('CardsComponent', () => { let component: CardsComponent; @@ -9,6 +10,7 @@ describe('CardsComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CardsComponent], + providers: [TrackByService], }).compileComponents(); fixture = TestBed.createComponent(CardsComponent);