diff --git a/pkg/bot/interactive/help.go b/pkg/bot/interactive/help.go index 56c885a64..7c4a3cfa1 100644 --- a/pkg/bot/interactive/help.go +++ b/pkg/bot/interactive/help.go @@ -39,7 +39,7 @@ func (h *HelpMessage) Build(init bool) CoreMessage { msg := CoreMessage{} if init { - msg.Header = fmt.Sprintf(":rocket: Botkube instance %q is now active.", h.clusterName) + msg.Header = fmt.Sprintf("🚀 Botkube instance %q is now active.", h.clusterName) } type getter func() []api.Section diff --git a/test/commplatform/slack_tester.go b/test/commplatform/slack_tester.go index 71a6ef0d2..132ab9858 100644 --- a/test/commplatform/slack_tester.go +++ b/test/commplatform/slack_tester.go @@ -460,7 +460,7 @@ func sPrintBlocks(blocks []slack.Block) string { } } builder.WriteString("::::") - return builder.String() + return replaceEmojiWithTags(builder.String()) } func (s *SlackTester) WaitForLastInteractiveMessagePostedEqual(userID, channelID string, msg interactive.CoreMessage) error { @@ -599,6 +599,12 @@ var emojiSlackMapping = map[string]string{ "🟢": ":large_green_circle:", "💡": ":bulb:", "❗": ":exclamation:", + "🚀": ":rocket:", + "🏁": ":checkered_flag:", + "🛠️": ":hammer_and_wrench:", + "📣": ":mega:", + "☁️": ":cloud:", + "🤖": ":robot_face:", } func replaceEmojiWithTags(content string) string {