OpenSlides/client/src/app/core/ui-services/choice.service.spec.ts
2019-07-30 09:53:14 +02:00

20 lines
509 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { E2EImportsModule } from 'e2e-imports.module';
import { ChoiceService } from './choice.service';
describe('ChoiceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [E2EImportsModule],
providers: [ChoiceService]
});
});
it('should be created', () => {
const service: ChoiceService = TestBed.get(ChoiceService);
expect(service).toBeTruthy();
});
});