Files
doneit-web/src/app/services/functions/sort.service.spec.ts
T
tiago.kayaya 8b29af8599 order by date
2021-10-18 13:58:26 +01:00

17 lines
347 B
TypeScript

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();
});
});