aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/specs/methods/zoom.spec.js
blob: 4989d27e68c77907056cb94ce51f89ff0d84d378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
describe('zoom (method)', () => {
  it('should be zoomed', (done) => {
    const image = window.createImage();
    const cropper = new Cropper(image, {
      ready() {
        const canvasData = cropper.getCanvasData();
        const changedCanvasData = cropper.zoom(0.1).getCanvasData();

        expect(changedCanvasData.width).to.be.above(canvasData.width);
        expect(changedCanvasData.height).to.be.above(canvasData.height);
        done();
      },
    });
  });

  it('should not be zoomed when it is not zoomable', (done) => {
    const image = window.createImage();
    const cropper = new Cropper(image, {
      zoomable: false,

      ready() {
        const canvasData = cropper.getCanvasData();
        const changedCanvasData = cropper.zoom(0.1).getCanvasData();

        expect(changedCanvasData.width).to.equal(canvasData.width);
        expect(changedCanvasData.height).to.equal(canvasData.height);
        done();
      },
    });
  });
});