import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PersonalizedCouponsComponent } from './personalized-coupons.component'; describe('PersonalizedCouponsComponent', () => { let component: PersonalizedCouponsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ PersonalizedCouponsComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(PersonalizedCouponsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });