我正在尝试使用 Lambda 执行 Newman,但是在 index.js 中添加 newman 时我一直超时:
const newman = require('newman');
exports.handler = function(event, context, callback) {
console.log("aa = ");
callback(null, "some success message");
}
如果我删除第一行 -const newman = require('newman');
执行顺利。
我的文件夹结构似乎也正确:
index.zip
- index.js
- node_modules
即使我在 Lambda 中添加超时,它最终也会超时。知道出了什么问题吗?提前致谢!