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