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