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