Fix order

This commit is contained in:
Peter Maquiran
2021-11-23 16:23:44 +01:00
parent 0fb342a463
commit 1f81744274
24 changed files with 134 additions and 78 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ObjectService } from './object.service';
describe('ObjectService', () => {
let service: ObjectService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ObjectService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});