Sha256: a05e2177ab1d23f11781e8e7e3980bbeb160c16e8031e853463ce7ef0a23f090
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe 'Promotion Code Invalidation', type: :system, js: true do let!(:promotion) do FactoryBot.create( :promotion_with_item_adjustment, code: "PROMO", per_code_usage_limit: 1, adjustment_rate: 5 ) end before do create(:store) FactoryBot.create(:product, name: "DL-44") FactoryBot.create(:product, name: "E-11") visit spree.root_path click_link "DL-44" click_button "Add To Cart" visit spree.root_path click_link "E-11" click_button "Add To Cart" end it 'adding the promotion to a cart with two applicable items' do fill_in "Coupon code", with: "PROMO" click_button "Apply Code" expect(page).to have_content("The coupon code was successfully applied to your order") within("#cart_adjustments") do expect(page).to have_content("-$10.00") end # Remove an item fill_in "order_line_items_attributes_0_quantity", with: 0 click_button "Update" within("#cart_adjustments") do expect(page).to have_content("-$5.00") end # Add it back visit spree.root_path click_link "DL-44" click_button "Add To Cart" within("#cart_adjustments") do expect(page).to have_content("-$10.00") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_starter_frontend-0.1.0 | spec/system/promotion_code_invalidation_spec.rb |