fix(core): Update dependencies and add jestExpect export
This commit is contained in:
parent
c36459dfcc
commit
aa8dcb734e
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-23 - 5.5.1 - fix(core)
|
||||||
|
Update dependencies and add jestExpect export
|
||||||
|
|
||||||
|
- Updated '@push.rocks/qenv' to '^6.1.0' in dependencies.
|
||||||
|
- Updated 'expect' package version to '^29.7.0' in dependencies.
|
||||||
|
- Updated '@types/node' to '^22.9.3' in devDependencies.
|
||||||
|
- Added jestExpect export in ts_node/index.ts.
|
||||||
|
|
||||||
## 2024-11-06 - 5.5.0 - feat(tapnodetools)
|
## 2024-11-06 - 5.5.0 - feat(tapnodetools)
|
||||||
Add TestFileProvider for handling Docker Alpine image
|
Add TestFileProvider for handling Docker Alpine image
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@open-wc/testing": "^4.0.0",
|
"@open-wc/testing": "^4.0.0",
|
||||||
"@push.rocks/consolecolor": "^2.0.2",
|
"@push.rocks/consolecolor": "^2.0.2",
|
||||||
"@push.rocks/qenv": "^6.0.5",
|
"@push.rocks/qenv": "^6.1.0",
|
||||||
"@push.rocks/smartcrypto": "^2.0.4",
|
"@push.rocks/smartcrypto": "^2.0.4",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@push.rocks/smartenv": "^5.0.12",
|
"@push.rocks/smartenv": "^5.0.12",
|
||||||
@ -39,13 +39,14 @@
|
|||||||
"@push.rocks/smartrequest": "^2.0.23",
|
"@push.rocks/smartrequest": "^2.0.23",
|
||||||
"@push.rocks/smarts3": "^2.2.5",
|
"@push.rocks/smarts3": "^2.2.5",
|
||||||
"@push.rocks/smartshell": "^3.0.6",
|
"@push.rocks/smartshell": "^3.0.6",
|
||||||
"@push.rocks/smarttime": "^4.0.8"
|
"@push.rocks/smarttime": "^4.0.8",
|
||||||
|
"expect": "^29.7.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.1.66",
|
||||||
"@git.zone/tsrun": "^1.2.43",
|
"@git.zone/tsrun": "^1.2.43",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^1.0.77",
|
||||||
"@types/node": "^22.5.5",
|
"@types/node": "^22.9.3",
|
||||||
"randomstring": "^1.3.0"
|
"randomstring": "^1.3.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
9167
pnpm-lock.yaml
generated
9167
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.5.0',
|
version: '5.5.1',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
@ -1 +1,5 @@
|
|||||||
export * from './classes.tapnodetools.js';
|
export * from './classes.tapnodetools.js';
|
||||||
|
|
||||||
|
import { expect as jestExpect } from 'expect';
|
||||||
|
|
||||||
|
export { jestExpect };
|
||||||
|
Loading…
Reference in New Issue
Block a user