taurus-tv/src/app/shared/fun.service.spec.ts
Dávid Danyi 6494c5c75c * funService created to share animgifs and cameraurl between the two modules
* funService is provider for both modules
* animgifs are still TBD, camera is visible in kanbanview between 11:30-12:30
2017-09-08 17:54:50 +02:00

16 lines
356 B
TypeScript

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