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:
parent
abf57ff497
commit
4da4c65faa
|
@ -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.create(function (err, book) {
|
||||||
book.chapters.create({name: 'a'}, function () {
|
book.chapters.create({name: 'a'}, function () {
|
||||||
book.chapters.create({name: 'z'}, function () {
|
book.chapters.create({name: 'z'}, function () {
|
||||||
|
|
Loading…
Reference in New Issue