Re-enable skipped test.

test/relations: hasMany should fetch all scoped instances

The test is passing with the current implementation.
This commit is contained in:
Miroslav Bajtoš 2014-04-02 19:35:14 +02:00
parent abf57ff497
commit 4da4c65faa
1 changed files with 1 additions and 1 deletions

View File

@ -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 () {