This commit is contained in:
Peter Maquiran
2021-08-18 18:58:28 +01:00
parent 00a18300e4
commit e0e258ab62
3 changed files with 91 additions and 0 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { SynchroService } from './synchro.service';
describe('SynchroService', () => {
let service: SynchroService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SynchroService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});