taurus-tv/src/app/shared/fun.service.spec.ts

16 lines
356 B
TypeScript
Raw Normal View History

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();
}));
});