aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/specs/options/minCanvasWidth.spec.js
blob: 0c58f2a80bea90cbfc5250c4fd5d5ac182b5c9eb (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
describe('minCanvasWidth (option)', () => {
  it('should be `0` by default', () => {
    const image = window.createImage();
    const cropper = new Cropper(image);

    expect(cropper.options.minCanvasWidth).to.equal(0);
  });

  it('should match the given minimum size', (done) => {
    const image = window.createImage();
    const minCanvasWidth = 480;
    const cropper = new Cropper(image, {
      minCanvasWidth,

      ready() {
        const canvasData = cropper.setCanvasData({
          width: 320,
        }).getCanvasData();

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

    expect(cropper.options.minCanvasWidth).to.equal(minCanvasWidth);
  });
});