Files
blog-frontEnd/index/src/app/api/http/http.service.spec.ts
2020-04-06 20:48:40 +08:00

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);
});
});