UNPKG

testbeats

Version:

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

18 lines (13 loc) 263 B
const { BasePlatform } = require("./base.platform"); class ChatPlatform extends BasePlatform { /** * @param {string|number} text */ bold(text) { return `<b>${text}</b>`; } break() { return '<br>'; } } module.exports = { ChatPlatform }