1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
5 import { NgbNavModule, NgbProgressbarModule } from '@ng-bootstrap/ng-bootstrap';
6 import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
8 import { configureTestBed, i18nProviders } from '../../../../../testing/unit-test-helper';
9 import { SharedModule } from '../../../../shared/shared.module';
10 import { MirrorHealthColorPipe } from '../mirror-health-color.pipe';
11 import { ImageListComponent } from './image-list.component';
13 describe('ImageListComponent', () => {
14 let component: ImageListComponent;
15 let fixture: ComponentFixture<ImageListComponent>;
18 declarations: [ImageListComponent, MirrorHealthColorPipe],
20 BrowserAnimationsModule,
22 BsDropdownModule.forRoot(),
25 HttpClientTestingModule
27 providers: i18nProviders
31 fixture = TestBed.createComponent(ImageListComponent);
32 component = fixture.componentInstance;
33 fixture.detectChanges();
36 it('should create', () => {
37 expect(component).toBeTruthy();