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:
Joffrey JAFFEUX
2024-12-23 13:25:17 +01:00
committed by GitHub
parent 1f46aed27e
commit cf26d3f211
2 changed files with 15 additions and 15 deletions

View File

@ -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