aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/options/zoomOnWheel.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/cropperjs/test/options/zoomOnWheel.js')
-rw-r--r--library/cropperjs/test/options/zoomOnWheel.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/library/cropperjs/test/options/zoomOnWheel.js b/library/cropperjs/test/options/zoomOnWheel.js
deleted file mode 100644
index 1a1bf6dce..000000000
--- a/library/cropperjs/test/options/zoomOnWheel.js
+++ /dev/null
@@ -1,47 +0,0 @@
-QUnit.test('options#zoomOnWheel: true', function (assert) {
- var done = assert.async();
- var util = window.Util;
- var image = util.createImage();
-
- assert.expect(1);
-
- return new Cropper(image, {
- // zoomOnWheel: true,
-
- ready: function () {
- var cropper = this.cropper;
-
- util.dispatchEvent(cropper.cropper, 'wheel');
-
- done();
- },
-
- zoom: function () {
- assert.ok(true);
- }
- });
-});
-
-QUnit.test('options#zoomOnWheel: false', function (assert) {
- var done = assert.async();
- var util = window.Util;
- var image = util.createImage();
-
- assert.expect(0);
-
- return new Cropper(image, {
- zoomOnWheel: false,
-
- ready: function () {
- var cropper = this.cropper;
-
- util.dispatchEvent(cropper.cropper, 'wheel');
-
- done();
- },
-
- zoom: function () {
- assert.ok(false);
- }
- });
-});