diff --git a/test/tests/Item_Cloning.js b/test/tests/Item_Cloning.js index bc4a6a95..a1d51c54 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -118,4 +118,12 @@ test('Raster#clone()', function() { raster.blendMode = 'multiply'; raster.rotate(20).translate(100); cloneAndCompare(raster); +}); + +test('Group with clipmask', function() { + var path = new Path.Circle([100, 100], 30), + path2 = new Path.Circle([100, 100], 20), + group = new Group([path, path2]); + group.clipped = true; + cloneAndCompare(group); }); \ No newline at end of file