我正在尝试从node.js- cloud函数索引文件运行一个python脚本。为了访问python脚本,我还使用了"python-shell“...问题是,每次我运行deploy my functions of the index.js文件时,都会打印以下错误:at terminateIfNeeded (/user_code/node_modules/python-shell/index.js
我刚开始在JS中进行单元测试,学习jest框架。我对简单的toThrow()匹配器有问题,我用它来测试抛出错误函数。我编写了简单的foo()函数,它只抛出一个错误并使用toThrow()匹配程序进行测试。index.js throw new Error('bar');index.test.js
import {foo} from './index</e