DEV: Drop widget post-menu spec (#1236)

In preparation for https://github.com/discourse/discourse/pull/31211
This commit is contained in:
David Taylor 2025-04-01 15:41:56 +01:00 committed by GitHub
parent 30242a27e6
commit fb68ae9698
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 103 additions and 111 deletions

View File

@ -43,12 +43,6 @@ RSpec.describe "Share conversation", type: :system do
page.execute_script("window.navigator.clipboard.writeText('')") page.execute_script("window.navigator.clipboard.writeText('')")
end end
glimmer_post_menu_states = %w[enabled disabled]
glimmer_post_menu_states.each do |state|
context "with the glimmer post menu #{state}" do
before { SiteSetting.glimmer_post_menu_mode = state }
it "can share a conversation with a persona user" do it "can share a conversation with a persona user" do
clip_text = nil clip_text = nil
@ -159,6 +153,4 @@ RSpec.describe "Share conversation", type: :system do
expect(conversation).to eq(clip_text) expect(conversation).to eq(clip_text)
end end
end
end
end end