Files
karaoqueue/frontend/ng-karaoqueue/src/app/entry-service.service.spec.ts
2020-03-25 18:06:16 +01:00

17 lines
388 B
TypeScript

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