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