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