Sha256: 72c6b43934a566c3ef060146ef5af46ec8c27a66e4b0200ab97b7f3f2f10b9ce

Contents?: true

Size: 653 Bytes

Versions: 2

Compression:

Stored size: 653 Bytes

Contents

RSpec.feature 'Change email', type: :feature do

  background do
    user = create(:user)
    visit spree.root_path
    click_link 'Login'

    fill_in 'spree_user[email]', with: user.email
    fill_in 'spree_user[password]', with: 'secret'
    click_button 'Login'

    visit spree.edit_account_path
  end

  scenario 'work with correct password', js: true do
    fill_in 'user_email', with: 'tests@example.com'
    fill_in 'user_password', with: 'password'
    fill_in 'user_password_confirmation', with: 'password'
    click_button 'Update'

    expect(page).to have_text 'Account updated'
    expect(page).to have_text 'tests@example.com'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_auth_devise-3.2.0.beta spec/features/change_email_spec.rb
spree_auth_devise-3.1.0 spec/features/change_email_spec.rb