Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
beforeEach(() => {
fixture = TestBed.createComponent(ImageCropperComponent);
component = fixture.componentInstance;
spyOn(Cropper.prototype, 'getCroppedCanvas')
.and.callFake(() => fakeCanvas);
spyOn(component.croppedImgSrc, 'emit');
fixture.detectChanges();
});