feat(node): Add smartmongo and smarts3 integration in node tools

This commit is contained in:
2024-11-06 02:46:34 +01:00
parent 05a361046e
commit 649e69e1f2
6 changed files with 5339 additions and 4109 deletions

View File

@ -15,4 +15,14 @@ tap.test('should create a https cert', async () => {
expect(cert).toInclude('-----BEGIN CERTIFICATE-----');
});
tap.test('should create a smartmongo instance', async () => {
const smartmongo = await tapNodeTools.createSmartmongo();
await smartmongo.stop();
});
tap.test('should create a smarts3 instance', async () => {
const smarts3 = await tapNodeTools.createSmarts3();
await smarts3.stop();
});
tap.start();