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