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