24 lines
642 B
TypeScript
24 lines
642 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { ImageListComponent } from './imagelist.component';
|
|
|
|
describe('ImageListComponent', () => {
|
|
let component: ImageListComponent;
|
|
let fixture: ComponentFixture<ImageListComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ImageListComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ImageListComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|