function postToSlack()

in testlab-to-slack/functions/index.js [5:30]


function postToSlack(title, details) {
  return axios.post(
    functions.config().slack.webhook_url,
    {
      blocks: [
        {
          type: 'section',
          text: {
            type: 'mrkdwn',
            text: title
          }
        },
        {
          type: 'divider'
        },
        {
          type: 'section',
          text: {
            type: 'mrkdwn',
            text: details
          }
        }
      ]
    }
  );
}