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

    expect(cropper.options.minContainerWidth).to.equal(200);
  });

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

    image.parentElement.style.width = '160px';

    const minContainerWidth = 320;
    const cropper = new Cropper(image, {
      minContainerWidth,

      ready() {
        expect(cropper.getContainerData().width).to.equal(minContainerWidth);
        done();
      },
    });

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