合并为一个项目 #14

Merged
xiaohai2271 merged 56 commits from issue11 into master 2020-05-16 22:35:08 +08:00
2 changed files with 0 additions and 27 deletions
Showing only changes of commit 6f540acebc - Show all commits

View File

@@ -1,12 +0,0 @@
import {TestBed} from '@angular/core/testing';
import {ApiService} from './api.service';
describe('ApiService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ApiService = TestBed.get(ApiService);
expect(service).toBeTruthy();
});
});

View File

@@ -1,15 +0,0 @@
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);
});
});