From 8ec3d593c1fcfa149eadcfee01a98d63bfb49976 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 6 Nov 2024 03:16:44 +0100 Subject: [PATCH] fix(TapNodeTools): Fix server port default value in createSmarts3 method --- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- ts_node/classes.tapnodetools.ts | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 9d7d174..ec220ed 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-11-06 - 5.4.3 - fix(TapNodeTools) +Fix server port default value in createSmarts3 method + +- The `createSmarts3` method in `TapNodeTools` now explicitly sets the port to 3003. + ## 2024-11-06 - 5.4.2 - fix(dependencies) Update smarts3 dependency version to fix issues. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 2c7a849..63faec1 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/tapbundle', - version: '5.4.2', + version: '5.4.3', description: 'A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.' } diff --git a/ts_node/classes.tapnodetools.ts b/ts_node/classes.tapnodetools.ts index 28458a7..f7e35ff 100644 --- a/ts_node/classes.tapnodetools.ts +++ b/ts_node/classes.tapnodetools.ts @@ -85,6 +85,7 @@ class TapNodeTools { public async createSmarts3() { const smarts3Mod = await import('@push.rocks/smarts3'); const smarts3Instance = new smarts3Mod.Smarts3({ + port: 3003, cleanSlate: true, }); await smarts3Instance.start();