16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
import {TestBed} from '@angular/core/testing';
|
|
|
|
import {HttpService} from './http.service';
|
|
|
|
describe('HttpService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: HttpService = TestBed.get(HttpService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
it('should be valid', () => {
|
|
const service: HttpService = TestBed.get(HttpService);
|
|
});
|
|
});
|