Merge pull request #3754 from consul/flaky_results_spec

Fix flaky officing results spec
This commit is contained in:
Javier Martín
2019-10-10 20:56:51 +02:00
committed by GitHub

View File

@@ -111,7 +111,11 @@ describe "Officing Results", :with_frozen_time do
click_link "See results"
end
expect(page).not_to have_content("7777")
within("#question_#{question_1.id}_0_result") do
expect(page).to have_content("5555")
expect(page).not_to have_content("7777")
end
within("#white_results") { expect(page).to have_content("6") }
within("#null_results") { expect(page).to have_content("7") }
within("#total_results") { expect(page).to have_content("8") }