* 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
16 lines
368 B
TypeScript
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();
|
|
}));
|
|
});
|