2019-09-18 15:02:21 +09:00

13 lines
349 B
TypeScript

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