smartmongo/test/test.ts

15 lines
381 B
TypeScript

import { expect, tap } from '@pushrocks/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.stop();
})
tap.start();