From 618e19cc964a0cf8c44bfa80efc8ea162e8c6672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 7 May 2013 22:48:53 -0700 Subject: [PATCH] Add failing test for #215. --- test/tests/JSON.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/tests/JSON.js b/test/tests/JSON.js index 4bce3c0e..247f9fff 100644 --- a/test/tests/JSON.js +++ b/test/tests/JSON.js @@ -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); +}); \ No newline at end of file