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

    expect(cropper.options.minContainerHeight).to.equal(100);
  });

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

    image.parentElement.style.height = '90px';

    const minContainerHeight = 180;
    const cropper = new Cropper(image, {
      minContainerHeight,

      ready() {
        expect(cropper.getContainerData().height).to.equal(minContainerHeight);
        done();
      },
    });

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