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