# frozen_string_literal: true require 'spec_helper' RSpec.describe Banzai::Pipeline::BroadcastMessagePipeline do before do stub_commonmark_sourcepos_disabled end subject { described_class.to_html(exp, project: spy) } context "allows `a` elements" do let(:exp) { "Link" } it { is_expected.to eq("

#{exp}

") } end context "allows `br` elements" do let(:exp) { "Hello
World" } it { is_expected.to eq("

#{exp}

") } end end