blob: 61a9385fda8e2a5a713f2428a10af442688b7141 [file] [log] [blame]
import { TestBed } from '@angular/core/testing';
import { HttpLoadingService } from './http-loading.service';
describe('HttpLoadingService', () => {
let service: HttpLoadingService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(HttpLoadingService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});