2018-11-23 13:59:14 +01:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { LocalPermissionsService } from './local-permissions.service';
|
|
|
|
import { E2EImportsModule } from '../../../../e2e-imports.module';
|
|
|
|
|
|
|
|
describe('LocalPermissionsService', () => {
|
2019-01-10 12:54:48 +01:00
|
|
|
beforeEach(() => TestBed.configureTestingModule({ imports: [E2EImportsModule] }));
|
2018-11-23 13:59:14 +01:00
|
|
|
|
2019-01-10 12:54:48 +01:00
|
|
|
it('should be created', () => {
|
|
|
|
const service: LocalPermissionsService = TestBed.get(LocalPermissionsService);
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
2018-11-23 13:59:14 +01:00
|
|
|
});
|