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