This commit is contained in:
Aart Jan Kaptijn 2021-11-17 22:58:05 +01:00 committed by A. J. Kaptijn
parent 1d5276a2d9
commit e68c4b3066

View file

@ -209,8 +209,8 @@ class TestReporter {
core.setOutput('url_html', resp.data.html_url)
if (isFailed && this.slackWebhook) {
const webhook = new IncomingWebhook(this.slackWebhook);
await webhook.send("Test run failed: " + resp.data.html_url);
const webhook = new IncomingWebhook(this.slackWebhook)
await webhook.send('Test run failed: ' + resp.data.html_url)
}
return results
}