2022-12-21 13:21:02 +01:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
2023-06-07 10:26:58 +09:00
|
|
|
|
RSpec.describe "Anonymous", type: :system do
|
2022-12-21 13:21:02 +01:00
|
|
|
|
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
|
|
|
|
|
|
end
|
|
|
|
|
|
end
|