OpenSlides/client/src/app/site/motions/services/statute-paragraph-repository.service.spec.ts

21 lines
648 B
TypeScript
Raw Normal View History

2018-10-12 11:05:24 +02:00
import { TestBed, inject } from '@angular/core/testing';
import { E2EImportsModule } from 'e2e-imports.module';
import { StatuteParagraphRepositoryService } from './statute-paragraph-repository.service';
describe('StatuteParagraphRepositoryService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [E2EImportsModule],
providers: [StatuteParagraphRepositoryService]
});
});
it('should be created', inject(
[StatuteParagraphRepositoryService],
(service: StatuteParagraphRepositoryService) => {
expect(service).toBeTruthy();
}
));
});