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