This commit is contained in:
tiago.kayaya
2021-09-06 16:53:58 +01:00
parent d0fee13402
commit 5e4229e210
7 changed files with 84 additions and 7 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { TimeService } from './time.service';
describe('TimeService', () => {
let service: TimeService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(TimeService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});