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