Issue when trying to run unit testcases on workflows

Hey all I’m facing an issue with @temporalio/nyc-test-coverage package.
I’m getting the below mentioned issue, with the version 1.11.1 & same issue i’m not getting on version 1.5.2
Can anyone please help in resolving this issue.

My package.json file is this
{
“name”: “xxxxxxxx”,
“version”: “0.1.0”,
“private”: true,
“scripts”: {
“test”: “jest --colors --coverage --passWithNoTests --forceExit --detectOpenHandles”,
“build”: “tsc -p . && copyfiles certs/** certs/**/* build”,
“build.watch”: “tsc --build --watch”,
“lint”: “eslint .”,
“app”: “nodemon run-local.ts”
},
“nodemonConfig”: {
“execMap”: {
“ts”: “ts-node”
},
“ext”: “ts”,
“watch”: [
“src”
]
},
“dependencies”: {
@aws-sdk/client-secrets-manager”: “^3.588.0”,
@aws-sdk/client-sqs”: “^3.588.0”,
@temporalio/activity”: “^1.11.1”,
@temporalio/client”: “^1.11.1”,
@temporalio/worker”: “^1.11.1”,
@temporalio/workflow”: “^1.11.1”,
“axios”: “^1.7.2”,
“dotenv”: “^16.4.5”,
“express”: “^4.19.2”,
“figlet”: “^1.7.0”,
“helmet”: “^7.1.0”,
“http”: “0.0.1-security”,
“https”: “^1.0.0”,
“jest-junit”: “^16.0.0”,
“jsonwebtoken”: “^9.0.2”,
“launchdarkly-node-server-sdk”: “^7.0.4”,
“lodash”: “^4.17.21”,
“pino”: “^9.1.0”,
“redis”: “^4.6.14”,
“sanitize-html”: “^2.13.0”,
“sqs-consumer”: “^10.3.0”
},
“devDependencies”: {
@babel/core”: “^7.24.6”,
@babel/preset-env”: “^7.24.6”,
@babel/preset-typescript”: “^7.24.6”,
@temporalio/nyc-test-coverage”: “^1.11.1”,
@temporalio/testing”: “^1.11.1”,
@types/express”: “^4.17.21”,
@types/jest”: “^29.5.12”,
@types/jsonwebtoken”: “^9.0.6”,
@types/lodash”: “^4.17.4”,
@types/node”: “^20.14.1”,
@typescript-eslint/eslint-plugin”: “^7.12.0”,
@typescript-eslint/parser”: “^7.12.0”,
“babel-jest”: “^30.0.0-alpha.2”,
“copyfiles”: “^2.4.1”,
“eslint”: “^8.57.0”,
“eslint-config-prettier”: “^9.1.0”,
“eslint-plugin-deprecation”: “^3.0.0”,
“jest”: “^30.0.0-alpha.2”,
“nock”: “^13.5.4”,
“nodemon”: “^3.1.3”,
“redis-mock”: “^0.56.3”,
“ts-node”: “^10.9.2”,
“typescript”: “^5.4.5”
}
}