This commit is contained in:
Anton Lavrenov
2019-05-27 20:25:54 -05:00
parent 1230f2dd44
commit b2239a7085
2 changed files with 2 additions and 4 deletions

2
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -932,7 +932,7 @@ suite('Transformer', function() {
assert.equal(rect.scaleY(), 1); assert.equal(rect.scaleY(), 1);
}); });
test.only('keep ratio should allow negative scaling', function() { test('keep ratio should allow negative scaling', function() {
var stage = addStage(); var stage = addStage();
var layer = new Konva.Layer(); var layer = new Konva.Layer();
stage.add(layer); stage.add(layer);
@@ -980,8 +980,6 @@ suite('Transformer', function() {
assert.equal(rect.scaleX(), -1); assert.equal(rect.scaleX(), -1);
assert.equal(rect.scaleY(), -1); assert.equal(rect.scaleY(), -1);
throw '';
}); });
test('can add padding with rotation', function() { test('can add padding with rotation', function() {