UNPKG

testbeats

Version:

Publish test results to Microsoft Teams, Google Chat, Slack and InfluxDB

17 lines (13 loc) 257 B
const { BasePlatform } = require("./base.platform"); class SlackPlatform extends BasePlatform { /** * @param {string|number} text */ bold(text) { return `*${text}*`; } break() { return '\n'; } } module.exports = { SlackPlatform }