1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { ReactiveFormsModule } from '@angular/forms';
4 import { RouterTestingModule } from '@angular/router/testing';
5 import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
6 import { ToastrModule } from 'ngx-toastr';
7 import { SharedModule } from '~/app/shared/shared.module';
9 import { CreateRgwServiceEntitiesComponent } from './create-rgw-service-entities.component';
11 describe('CreateRgwServiceEntitiesComponent', () => {
12 let component: CreateRgwServiceEntitiesComponent;
13 let fixture: ComponentFixture<CreateRgwServiceEntitiesComponent>;
15 beforeEach(async () => {
16 await TestBed.configureTestingModule({
21 HttpClientTestingModule,
22 ToastrModule.forRoot()
24 providers: [NgbActiveModal],
25 declarations: [CreateRgwServiceEntitiesComponent]
26 }).compileComponents();
30 fixture = TestBed.createComponent(CreateRgwServiceEntitiesComponent);
31 component = fixture.componentInstance;
32 fixture.detectChanges();
35 it('should create', () => {
36 expect(component).toBeTruthy();