smartmongo/test/test.ts
2023-08-08 16:59:47 +02:00

15 lines
404 B
TypeScript

import { expect, tap } from '@push.rocks/tapbundle';
import * as smartmongo from '../ts/index.js';
let smartmongoInstance: smartmongo.SmartMongo;
tap.test('should create a mongo instance', async () => {
smartmongoInstance = await smartmongo.SmartMongo.createAndStart();
});
tap.test('should stop the instance', async () => {
await smartmongoInstance.stopAndDumpToDir('.nogit/');
});
tap.start();