Removed test on array field, to be done later

pull/2/head
Louis Chatriot 12 years ago
parent f7e3916693
commit c27acd49cc
  1. 12
      test/db.test.js

@ -284,18 +284,6 @@ describe('Database', function () {
});
});
it('By default, matching on an array field is matching any of its components', function (done) {
d.insert({ fruits: ['orange', 'apple', 'pear'] }, function () {
d.insert({ fruits: ['banana', 'coconut', 'pear'] }, function () {
d.find({ fruits: 'pear' }, function (err, docs) {
console.log(docs);
// TODO
done();
});
});
});
});
}); // ==== End of 'Find' ==== //

Loading…
Cancel
Save