From 0defc804c01e69d8acab7e2bef113d560c36a23d Mon Sep 17 00:00:00 2001 From: Anatoliy Chakkaev Date: Tue, 14 Aug 2012 18:47:59 +0400 Subject: [PATCH] Remove JSON serialization test case --- test/common_test.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test/common_test.js b/test/common_test.js index 047424e1..9cdc956f 100644 --- a/test/common_test.js +++ b/test/common_test.js @@ -316,17 +316,17 @@ function testOrm(schema) { test.done(); }); - it('should serialize JSON type', function (test) { - User.create({settings: {hello: 'world'}}, function (err, user) { - test.ok(user.id); - test.equal(user.settings.hello, 'world'); - User.find(user.id, function (err, u) { - console.log(u.settings); - test.equal(u.settings.hello, 'world'); - test.done(); - }); - }); - }); + // it('should serialize JSON type', function (test) { + // User.create({settings: {hello: 'world'}}, function (err, user) { + // test.ok(user.id); + // test.equal(user.settings.hello, 'world'); + // User.find(user.id, function (err, u) { + // console.log(u.settings); + // test.equal(u.settings.hello, 'world'); + // test.done(); + // }); + // }); + // }); it('should update single attribute', function (test) { Post.create({title: 'title', content: 'content', published: true}, function (err, post) {