mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
17 lines
398 B
TypeScript
17 lines
398 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { IsCollectionAdminGuard } from './is-collection-admin.guard';
|
|
|
|
describe('IsCollectionAdminGuard', () => {
|
|
let guard: IsCollectionAdminGuard;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
guard = TestBed.inject(IsCollectionAdminGuard);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(guard).toBeTruthy();
|
|
});
|
|
});
|