@protocolnebula/ts-openapi-generator
Version:
Build API and models from Swagger/OpenAPI to use in any project type
13 lines (9 loc) • 342 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { ApiBaseService } from './api-base.service';
describe('ApiBaseService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ApiBaseService = TestBed.inject(ApiBaseService);
expect(service).toBeTruthy();
});
});