delete test files

This commit is contained in:
小海
2020-05-15 21:01:10 +08:00
parent dd6f85dc62
commit 6f540acebc
2 changed files with 0 additions and 27 deletions

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