fix(dependencies): Fix missing jest dependency in package.json and update exports in ts_node/index.ts
This commit is contained in:
		| @@ -1,5 +1,11 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## 2025-03-08 - 5.5.9 - fix(dependencies) | ||||
| Fix missing jest dependency in package.json and update exports in ts_node/index.ts | ||||
|  | ||||
| - Added missing '@jest/globals' dependency to package.json. | ||||
| - Updated ts_node/index.ts to properly export jest along with jestExpect. | ||||
|  | ||||
| ## 2025-03-08 - 5.5.8 - fix(test) | ||||
| Ensure compatibility with async/await in test cases. | ||||
|  | ||||
|   | ||||
| @@ -24,6 +24,7 @@ | ||||
|   }, | ||||
|   "homepage": "https://code.foss.global/push.rocks/tapbundle#readme", | ||||
|   "dependencies": { | ||||
|     "@jest/globals": "^29.7.0", | ||||
|     "@open-wc/testing": "^4.0.0", | ||||
|     "@push.rocks/consolecolor": "^2.0.2", | ||||
|     "@push.rocks/qenv": "^6.1.0", | ||||
|   | ||||
							
								
								
									
										811
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										811
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -3,6 +3,6 @@ | ||||
|  */ | ||||
| export const commitinfo = { | ||||
|   name: '@push.rocks/tapbundle', | ||||
|   version: '5.5.8', | ||||
|   version: '5.5.9', | ||||
|   description: 'A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.' | ||||
| } | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| export * from './classes.tapnodetools.js'; | ||||
|  | ||||
| import { jest } from '@jest/globals'; | ||||
| import { expect as jestExpect } from 'expect'; | ||||
|  | ||||
| export { jestExpect }; | ||||
| export { jest, jestExpect }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user