oedb-backend/frontend/src/app/services/oedb-api.spec.ts
2025-10-03 11:56:55 +02:00

16 lines
327 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { OedbApi } from './oedb-api';
describe('OedbApi', () => {
let service: OedbApi;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(OedbApi);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});