次の count 呼び出しが機能しないのはなぜですか? コレクションに「My testlist」があることは知っていますが、カウントは常に 0 です。統合テスト検証のこの部分では、名前はデータベース内で一意です。
db.collection('lists', function(err, collection) {
collection.find({name: "My testlist"}).count(function(err, count) {
console.log("err: " + err + ", count: " + count)
assert.equal(1, count)
})
})
NodeJS で mongodb ネイティブ ドライバーを使用しています。