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