Add Transform to Konva default exports. So Konva.Transform is available now. close #820

This commit is contained in:
Anton Lavrenov
2020-01-07 08:31:28 -05:00
parent aab7bf1c0f
commit f097fe7b2f
5 changed files with 13 additions and 4 deletions

View File

@@ -48,4 +48,8 @@ suite('Util', function() {
a: 1
});
});
test('make sure Transform is exported', () => {
assert.equal(!!Konva.Transform, true);
})
});