1

在我的自动化框架中,我在测试脚本的末尾生成了一个 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');
            }
        });
4

0 回答 0