Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
RSpec.describe "Anonymous", type: :system do
fab!(:topic) { Fabricate(:topic) }
before { chat_system_bootstrap }
context "when anonymous" do
it "doesn’t cause issues" do
visit("/")
expect(page).to have_content(topic.title)
end