16 lines
327 B
TypeScript
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();
|
|
});
|
|
});
|