OpenSlides/client/src/app/core/core-services/http.service.spec.ts

17 lines
445 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { HttpService } from './http.service';
describe('HttpService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [HttpService]
});
});
// TODO: Write a working Test
// it('should be created', () => {
// const service: HttpService = TestBed.get(HttpService);
// expect(service).toBeTruthy();
// });
});