* funService is provider for both modules * animgifs are still TBD, camera is visible in kanbanview between 11:30-12:30
16 lines
356 B
TypeScript
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();
|
|
}));
|
|
});
|