mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-05 01:31:41 +02:00
17 lines
388 B
TypeScript
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();
|
|
});
|
|
});
|