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