undo and redo adding new cropper library as it had a .git config from the original project
This commit is contained in:
		
							
								
								
									
										20
									
								
								library/cropperjs/test/methods/setAspectRatio.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								library/cropperjs/test/methods/setAspectRatio.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| QUnit.test('methods#setAspectRatio', function (assert) { | ||||
|   var done = assert.async(); | ||||
|   var util = window.Util; | ||||
|   var image = util.createImage(); | ||||
|  | ||||
|   assert.expect(2); | ||||
|  | ||||
|   return new Cropper(image, { | ||||
|     ready: function () { | ||||
|       var cropper = this.cropper; | ||||
|       var options = cropper.options; | ||||
|  | ||||
|       assert.ok(isNaN(options.aspectRatio)); | ||||
|       cropper.setAspectRatio(1); | ||||
|       assert.strictEqual(options.aspectRatio, 1); | ||||
|  | ||||
|       done(); | ||||
|     } | ||||
|   }); | ||||
| }); | ||||
		Reference in New Issue
	
	Block a user