在我的自动化框架中,我正在测试脚本的末尾生成一个html测试报告。我想将此HTML报告发布到一个闲暇的渠道。我使用node-slack-upload模块进行了尝试,但是虽然消息成功发布,但无法上传。下面是我的代码:
slack.uploadFile({
file: fs.createReadStream("test.html"),
filetype: 'post',
title: "Skyline API Automation Report",
channel: "#skylineautomation"
}, function(err) {
if (err) {
console.log("inside error");
console.error(err);
}
else {
console.log('done');
}
});