mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
27 lines
771 B
TypeScript
27 lines
771 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CommunityAccessControlComponent } from './community-access-control.component';
|
|
|
|
// TODO: enable this test suite and fix it
|
|
xdescribe('CommunityAccessControlComponent', () => {
|
|
let component: CommunityAccessControlComponent;
|
|
let fixture: ComponentFixture<CommunityAccessControlComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [CommunityAccessControlComponent]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(CommunityAccessControlComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|