overflow-webapp/src/app/commons/service/rest.service.spec.ts
crusader 3293add02f ing
2018-03-11 20:54:56 +09:00

16 lines
362 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { RESTService } from './rest.service';
describe('RESTService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [RESTService]
});
});
it('should be created', inject([RESTService], (service: RESTService) => {
expect(service).toBeTruthy();
}));
});