quosdolorem
Version:
The MongoDB Shell
8 lines (7 loc) • 333 B
text/typescript
import { getMlaunchPath, ensureMongodAvailable } from '../testing/integration-testing-hooks';
(async () => {
const mlaunchpath = await getMlaunchPath();
const binarypath = await ensureMongodAvailable();
console.log({ mlaunchpath, binarypath });
})().catch(err => process.nextTick(() => { throw err; }));