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';
7 import { configureTestBed } from '~/testing/unit-test-helper';
8 import { SharedModule } from '~/app/shared/shared.module';
9 import { MirrorHealthColorPipe } from '../mirror-health-color.pipe';
10 import { ImageListComponent } from './image-list.component';
12 describe('ImageListComponent', () => {
13 let component: ImageListComponent;
14 let fixture: ComponentFixture<ImageListComponent>;
17 declarations: [ImageListComponent, MirrorHealthColorPipe],
19 BrowserAnimationsModule,
23 HttpClientTestingModule
28 fixture = TestBed.createComponent(ImageListComponent);
29 component = fixture.componentInstance;
30 fixture.detectChanges();
33 it('should create', () => {
34 expect(component).toBeTruthy();