我有使用 Yarn 和 Mocha 运行的 TypeScript 测试,它们在本地运行良好。然而,当我通过 CircleCI 部署时,我得到了这个:
1) Uncaught error outside test suite:
Uncaught Workerpool Worker terminated Unexpectedly
exitCode: `null`
signalCode: `SIGKILL`
workerpool.script: `/home/circleci/my-project/node_modules/mocha/lib/nodejs/worker.js`
spawnArgs: `/usr/local/bin/node,--inspect,--inspect=43215,/home/circleci/my-project/node_modules/mocha/lib/nodejs/worker.js`
spawnfile: `/usr/local/bin/node`
stdout: `null`
stderr: `null`
Error: Workerpool Worker terminated Unexpectedly
exitCode: `null`
signalCode: `SIGKILL`
spawnfile: `/usr/local/bin/node`
stdout: `null`
stderr: `null`
at ChildProcess.<anonymous> (node_modules/workerpool/src/WorkerHandler.js:294:13)
at Process.ChildProcess._handle.onexit (internal/child_process.js:282:12)
我已经xdescribe
完成了所有测试,但仍然会发生这种情况。想法赞赏。