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/minCropBoxWidth.js
Normal file
23
library/cropperjs/test/options/minCropBoxWidth.js
Normal file
@@ -0,0 +1,23 @@
|
||||
QUnit.test('options#minCropBoxWidth', function (assert) {
|
||||
var done = assert.async();
|
||||
var util = window.Util;
|
||||
var image = util.createImage();
|
||||
var minCropBoxWidth = 300;
|
||||
|
||||
assert.expect(1);
|
||||
|
||||
return new Cropper(image, {
|
||||
minCropBoxWidth: minCropBoxWidth,
|
||||
|
||||
ready: function () {
|
||||
var cropper = this.cropper;
|
||||
var cropBoxData = cropper.setCropBoxData({
|
||||
width: 200
|
||||
}).getCropBoxData();
|
||||
|
||||
assert.strictEqual(Math.round(cropBoxData.width), minCropBoxWidth);
|
||||
|
||||
done();
|
||||
}
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user