2018-12-12 18:06:06 +01:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-01-11 18:55:09 +01:00
|
|
|
import { AgendaImportService } from './agenda-import.service';
|
2018-12-12 18:06:06 +01:00
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
|
2019-01-11 18:55:09 +01:00
|
|
|
describe('AgendaImportService', () => {
|
2019-01-10 12:54:48 +01:00
|
|
|
beforeEach(() =>
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [E2EImportsModule]
|
|
|
|
})
|
|
|
|
);
|
2018-12-12 18:06:06 +01:00
|
|
|
|
|
|
|
it('should be created', () => {
|
2019-01-11 18:55:09 +01:00
|
|
|
const service: AgendaImportService = TestBed.get(AgendaImportService);
|
2018-12-12 18:06:06 +01:00
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|