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