diff --git a/spec/system/consumer/shopping/shopping_spec.rb b/spec/system/consumer/shopping/shopping_spec.rb index 4c7fc25d00..c5a835f9be 100644 --- a/spec/system/consumer/shopping/shopping_spec.rb +++ b/spec/system/consumer/shopping/shopping_spec.rb @@ -242,8 +242,9 @@ describe "As a consumer I want to shop with a distributor", js: true do end context "filtering search results" do - before { visit shop_path } it "returns no results and clears searches by clicking the clear-link" do + visit shop_path + expect(page).to have_content product2.name fill_in "search", with: "74576345634XXXXXX" expect(page).to have_content "Sorry, no results found" expect(page).not_to have_content product2.name @@ -251,6 +252,8 @@ describe "As a consumer I want to shop with a distributor", js: true do expect(page).to have_content("Add", count: 4) end it "returns results and clears searches by clicking the clear-button" do + visit shop_path + expect(page).to have_content product2.name fill_in "search", with: "Meer" # For product named "Meercats" expect(page).to have_content product2.name expect(page).not_to have_content product.name