aboutsummaryrefslogblamecommitdiffstats
path: root/library/cropperjs/test/specs/methods/rotate.spec.js
blob: b4cfef511b5f2e09798b0b59704676b8c87787f2 (plain) (tree)


























                                                                           
describe('rotate (method)', () => {
  it('should rotate with the given degree', (done) => {
    const image = window.createImage();
    const cropper = new Cropper(image, {
      ready() {
        expect(cropper.rotate(360).getImageData().rotate).to.equal(0);
        expect(cropper.rotate(90).getImageData().rotate).to.equal(90);
        expect(cropper.rotate(-180).getImageData().rotate).to.equal(-90);
        done();
      },
    });
  });

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

      ready() {
        expect(cropper.rotate(360).getImageData().rotate).to.be.undefined;
        expect(cropper.rotate(90).getImageData().rotate).to.be.undefined;
        expect(cropper.rotate(-180).getImageData().rotate).to.be.undefined;
        done();
      },
    });
  });
});