Files
doneit-web/src/app/services/functions/sort.service.spec.ts
T

17 lines
347 B
TypeScript
Raw Normal View History

2021-10-18 13:58:26 +01:00
import { TestBed } from '@angular/core/testing';
import { SortService } from './sort.service';
describe('SortService', () => {
let service: SortService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SortService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});