Add failing test for #215.

This commit is contained in:
Jürg Lehni 2013-05-07 22:48:53 -07:00
parent 0fe431adfb
commit 618e19cc96

View file

@ -203,3 +203,9 @@ test('Item#data', function() {
testExportImportJSON(paper.project);
});
test('Color', function() {
var path = new Path({
fillColor: new Color(1, 1, 0, 0.5)
});
testExportImportJSON(paper.project);
});