Merge pull request #5754 from consuldemocracy/wait_for_suggestions

Wait for suggestions in multitenancy and document tests
This commit is contained in:
Javi Martín
2024-10-24 11:49:37 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ describe "Documents" do
login_as(create(:user)) login_as(create(:user))
visit new_proposal_path visit new_proposal_path
fill_in "Proposal title", with: "debate" fill_in_new_proposal_title with: "debate"
fill_in "Proposal summary", with: "In summary, what we want is..." fill_in "Proposal summary", with: "In summary, what we want is..."
fill_in "Full name of the person submitting the proposal", with: "Isabel Garcia" fill_in "Full name of the person submitting the proposal", with: "Isabel Garcia"
documentable_attach_new_file(file_fixture("logo_with_metadata.pdf")) documentable_attach_new_file(file_fixture("logo_with_metadata.pdf"))

View File

@@ -45,7 +45,7 @@ describe "Multitenancy", :seed_tenants do
with_subdomain("mars") do with_subdomain("mars") do
visit new_proposal_path visit new_proposal_path
fill_in "Proposal title", with: "Use the unaccent extension in Mars" fill_in_new_proposal_title with: "Use the unaccent extension in Mars"
fill_in "Proposal summary", with: "tsvector for María the Martian" fill_in "Proposal summary", with: "tsvector for María the Martian"
check "I agree to the Privacy Policy and the Terms and conditions of use" check "I agree to the Privacy Policy and the Terms and conditions of use"
@@ -73,7 +73,7 @@ describe "Multitenancy", :seed_tenants do
with_subdomain("mars") do with_subdomain("mars") do
visit new_debate_path visit new_debate_path
fill_in "Debate title", with: "Found any water here?" fill_in_new_debate_title with: "Found any water here?"
fill_in_ckeditor "Initial debate text", with: "Found any water here?" fill_in_ckeditor "Initial debate text", with: "Found any water here?"
check "I agree to the Privacy Policy and the Terms and conditions of use" check "I agree to the Privacy Policy and the Terms and conditions of use"