2019-01-25 18:14:44 +01:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
|
2019-07-26 11:46:59 +02:00
|
|
|
import { UserPdfService } from './user-pdf.service';
|
|
|
|
|
2019-01-25 18:14:44 +01:00
|
|
|
describe('UserPdfService', () => {
|
|
|
|
beforeEach(() =>
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [E2EImportsModule]
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
it('should be created', () => {
|
|
|
|
const service: UserPdfService = TestBed.get(UserPdfService);
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|