diff --git a/spec/features/consumer/shopping/checkout_spec.rb b/spec/features/consumer/shopping/checkout_spec.rb index 42f5b3d8e2..5cc8bf280c 100644 --- a/spec/features/consumer/shopping/checkout_spec.rb +++ b/spec/features/consumer/shopping/checkout_spec.rb @@ -119,15 +119,16 @@ feature "As a consumer I want to check out my cart", js: true do end end - it "doesn't tell about previous orders" do + it "shows only applicable content" do + # Unifying several specs here to speed up test run. + + # it doesn't tell about previous orders expect(page).to have_no_content("You have an order for this order cycle already.") - end - it "doesn't show link to terms and conditions" do + # doesn't show link to terms and conditions expect(page).to have_no_link("Terms and Conditions") - end - it "doesn't show link to platform terms of service" do + # doesn't show link to platform terms of service expect(page).to have_no_link("Terms of Service") end end