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