1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2 import { ReactiveFormsModule } from '@angular/forms';
4 import { BsModalRef } from 'ngx-bootstrap/modal';
6 import { SharedModule } from '../../../shared/shared.module';
7 import { RgwUserCapabilityModalComponent } from './rgw-user-capability-modal.component';
9 describe('RgwUserCapabilityModalComponent', () => {
10 let component: RgwUserCapabilityModalComponent;
11 let fixture: ComponentFixture<RgwUserCapabilityModalComponent>;
13 beforeEach(async(() => {
14 TestBed.configureTestingModule({
15 declarations: [ RgwUserCapabilityModalComponent ],
20 providers: [ BsModalRef ]
26 fixture = TestBed.createComponent(RgwUserCapabilityModalComponent);
27 component = fixture.componentInstance;
28 fixture.detectChanges();
31 it('should create', () => {
32 expect(component).toBeTruthy();