From 4da4c65faa13211489f4948ca1aa16862a23c87a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 2 Apr 2014 19:35:14 +0200 Subject: [PATCH] Re-enable skipped test. test/relations: hasMany should fetch all scoped instances The test is passing with the current implementation. --- test/relations.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/relations.test.js b/test/relations.test.js index 51452156..7bc3a1b3 100644 --- a/test/relations.test.js +++ b/test/relations.test.js @@ -68,7 +68,7 @@ describe('relations', function () { }); }); - it.skip('should fetch all scoped instances', function (done) { + it('should fetch all scoped instances', function (done) { Book.create(function (err, book) { book.chapters.create({name: 'a'}, function () { book.chapters.create({name: 'z'}, function () {