backend/projects/api-information/src/lib/api-information.service.spec.ts
2019-11-07 21:15:26 +09:00

13 lines
374 B
TypeScript

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