import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ImageCropperDialogComponent } from './image-cropper-dialog.component'; describe('ImageCropperDialogComponent', () => { let component: ImageCropperDialogComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ImageCropperDialogComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ImageCropperDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });