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