pdnsmanager/frontend/src/app/services/http/http.service.spec.ts
2017-07-23 16:24:52 +02:00

16 lines
362 B
TypeScript

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