Files
discourse/spec/system/post_menu_spec.rb
T

26 lines
681 B
Ruby
Raw Normal View History

2024-01-02 19:23:41 +10:00
# frozen_string_literal: true
describe "Post menu", type: :system, js: true do
fab!(:current_user) { Fabricate(:user) }
2024-01-03 16:55:08 +10:00
fab!(:topic)
fab!(:post) { Fabricate(:post, topic: topic) }
2024-01-02 19:23:41 +10:00
let(:topic_page) { PageObjects::Pages::Topic.new }
before { sign_in(current_user) }
describe "copy link" do
let(:cdp) { PageObjects::CDP.new }
before { cdp.allow_clipboard }
2024-01-03 16:55:08 +10:00
it "copies the absolute link to the post when clicked" do
2024-01-02 19:23:41 +10:00
topic_page.visit_topic(post.topic)
topic_page.click_post_action_button(post, :copy_link)
2024-01-03 16:55:08 +10:00
expect(cdp.read_clipboard).to eq(
post.full_url(share_url: true) + "?u=#{current_user.username}",
)
2024-01-02 19:23:41 +10:00
end
end
end