mirror of
https://github.com/discourse/discourse.git
synced 2025-05-30 15:28:37 +08:00
DEV: uses capybara helper has_field (#30438)
Checking for value of input directly is not waiting for value to be present.
This commit is contained in:
@ -28,7 +28,7 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the draft" do
|
||||
chat_page.visit_channel(channel_1)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft")
|
||||
expect(channel_page.composer).to have_value("draft")
|
||||
end
|
||||
|
||||
context "when loading another channel and back" do
|
||||
@ -42,15 +42,15 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the correct drafts" do
|
||||
chat_page.visit_channel(channel_1)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft")
|
||||
expect(channel_page.composer).to have_value("draft")
|
||||
|
||||
chat_page.visit_channel(channel_2)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft2")
|
||||
expect(channel_page.composer).to have_value("draft2")
|
||||
|
||||
chat_page.visit_channel(channel_1)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft")
|
||||
expect(channel_page.composer).to have_value("draft")
|
||||
end
|
||||
end
|
||||
|
||||
@ -104,7 +104,7 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the draft with the upload" do
|
||||
chat_page.visit_channel(channel_1)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft")
|
||||
expect(channel_page.composer).to have_value("draft")
|
||||
expect(page).to have_selector(".chat-composer-upload--image", count: 1)
|
||||
end
|
||||
end
|
||||
@ -133,7 +133,7 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the draft with replied to message" do
|
||||
chat_page.visit_channel(channel_1)
|
||||
|
||||
expect(channel_page.composer.value).to eq("draft")
|
||||
expect(channel_page.composer).to have_value("draft")
|
||||
expect(page).to have_selector(".chat-reply__username", text: message_1.user.username)
|
||||
expect(page).to have_selector(".chat-reply__excerpt", text: message_1.excerpt)
|
||||
end
|
||||
@ -153,7 +153,7 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the draft" do
|
||||
chat_page.visit_thread(thread_1)
|
||||
|
||||
expect(thread_page.composer.value).to eq("draft")
|
||||
expect(thread_page.composer).to have_value("draft")
|
||||
end
|
||||
|
||||
context "when loading another channel and back" do
|
||||
@ -168,15 +168,15 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the correct drafts" do
|
||||
chat_page.visit_thread(thread_1)
|
||||
|
||||
expect(thread_page.composer.value).to eq("draft")
|
||||
expect(thread_page.composer).to have_value("draft")
|
||||
|
||||
chat_page.visit_thread(thread_2)
|
||||
|
||||
expect(thread_page.composer.value).to eq("draft2")
|
||||
expect(thread_page.composer).to have_value("draft2")
|
||||
|
||||
chat_page.visit_thread(thread_1)
|
||||
|
||||
expect(thread_page.composer.value).to eq("draft")
|
||||
expect(thread_page.composer).to have_value("draft")
|
||||
end
|
||||
end
|
||||
|
||||
@ -239,7 +239,7 @@ RSpec.describe "Chat composer draft", type: :system do
|
||||
it "loads the draft with the upload" do
|
||||
chat_page.visit_thread(thread_1)
|
||||
|
||||
expect(thread_page.composer.value).to eq("draft")
|
||||
expect(thread_page.composer).to have_value("draft")
|
||||
expect(page).to have_selector(".chat-composer-upload--image", count: 1)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user