Files
dspace-angular/src/app/access-control/guards/is-collection-admin.guard.spec.ts
2021-02-25 15:12:31 +01:00

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();
});
});