mtas-tv-frontend/src/app/shared/service/timer.service.spec.ts
Dávid Danyi 6eb1cfaea1 * default routes and redirects added
* timers refactored into a timer service from the app.component
* settings service now provides observable setting changes
* slideshow is now working
* commit-tracker style changed to dark look, colored lines were removed
* dashboard menu order changed
* slide/committracker is now animated
2018-04-19 17:06:08 +02:00

16 lines
368 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { TimerService } from './timer.service';
describe('TimerService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [TimerService]
});
});
it('should be created', inject([TimerService], (service: TimerService) => {
expect(service).toBeTruthy();
}));
});