Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
32704386ee | |||
8ec3d593c1 | |||
f3f05b89d9 | |||
7104c8b1b5 |
10
changelog.md
10
changelog.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# 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.
|
||||||
|
|
||||||
|
- Changed the version of @push.rocks/smarts3 from ^2.2.1 to ^2.2.2.
|
||||||
|
|
||||||
## 2024-11-06 - 5.4.1 - fix(ci)
|
## 2024-11-06 - 5.4.1 - fix(ci)
|
||||||
Fix CI configuration URL and package installation paths.
|
Fix CI configuration URL and package installation paths.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/tapbundle",
|
"name": "@push.rocks/tapbundle",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "5.4.1",
|
"version": "5.4.3",
|
||||||
"description": "A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.",
|
"description": "A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./dist_ts/index.js",
|
".": "./dist_ts/index.js",
|
||||||
@ -34,7 +34,7 @@
|
|||||||
"@push.rocks/smartjson": "^5.0.20",
|
"@push.rocks/smartjson": "^5.0.20",
|
||||||
"@push.rocks/smartmongo": "^2.0.10",
|
"@push.rocks/smartmongo": "^2.0.10",
|
||||||
"@push.rocks/smartpromise": "^4.0.4",
|
"@push.rocks/smartpromise": "^4.0.4",
|
||||||
"@push.rocks/smarts3": "^2.2.1",
|
"@push.rocks/smarts3": "^2.2.2",
|
||||||
"@push.rocks/smartshell": "^3.0.6",
|
"@push.rocks/smartshell": "^3.0.6",
|
||||||
"@push.rocks/smarttime": "^4.0.8"
|
"@push.rocks/smarttime": "^4.0.8"
|
||||||
},
|
},
|
||||||
|
429
pnpm-lock.yaml
generated
429
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/tapbundle',
|
name: '@push.rocks/tapbundle',
|
||||||
version: '5.4.1',
|
version: '5.4.3',
|
||||||
description: 'A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.'
|
description: 'A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer.'
|
||||||
}
|
}
|
||||||
|
@ -85,6 +85,7 @@ class TapNodeTools {
|
|||||||
public async createSmarts3() {
|
public async createSmarts3() {
|
||||||
const smarts3Mod = await import('@push.rocks/smarts3');
|
const smarts3Mod = await import('@push.rocks/smarts3');
|
||||||
const smarts3Instance = new smarts3Mod.Smarts3({
|
const smarts3Instance = new smarts3Mod.Smarts3({
|
||||||
|
port: 3003,
|
||||||
cleanSlate: true,
|
cleanSlate: true,
|
||||||
});
|
});
|
||||||
await smarts3Instance.start();
|
await smarts3Instance.start();
|
||||||
|
Reference in New Issue
Block a user