aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/test/specs/methods/setDefaults.spec.js
blob: fb894db3b80f35a83063ea5d7fb54ed4309b5644 (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
describe('setDefaults', () => {
  it('should be a static method', () => {
    expect(Cropper.setDefaults).to.be.a('function');
  });

  it('should change the global default options', (done) => {
    Cropper.setDefaults({
      aspectRatio: 1,
    });

    const image = window.createImage();
    const cropper = new Cropper(image, {
      aspectRatio: 1,

      crop() {
        const cropBoxData = cropper.getCropBoxData();

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

    expect(cropper.options.aspectRatio).to.equal(1);

    // Reverts it for the rest test suites
    Cropper.setDefaults({
      aspectRatio: NaN,
    });
  });
});