UNPKG

sampledb

Version:

Sample data in a database style format.

14 lines (10 loc) 353 B
async function test() { let db = await sampleMongo('mongodb://localhost:27017/SampleDB') .reset('./test/SampleDB.json', 'students, scores') .connect(); let collectionNames = (await db.collections()) .map(c => c.collectionName); return collectionNames.includes('students'); }