()
| 92 | await collection.find().count(); |
| 93 | |
| 94 | async function insert() { |
| 95 | await collection.insertMany(Array.from({ length: 10 }, (_, i) => ({ x: i }))); |
| 96 | } |
| 97 | |
| 98 | async function finished() { |
| 99 | let count = await collection.find().count(); |
no test coverage detected