17 lines
445 B
TypeScript
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();
|
|
// });
|
|
});
|