Merge branch '36168-fix-transient-preferences-specs' into 'master'

Fix Profile > Preferences feature specs

See merge request !13382
This commit is contained in:
Sean McGivern 2017-08-08 16:18:03 +00:00
commit cfabe7bf38
1 changed files with 16 additions and 12 deletions

View File

@ -1,6 +1,6 @@
require 'spec_helper'
describe 'Profile > Preferences' do
describe 'Profile > Preferences', :js do
let(:user) { create(:user) }
before do
@ -8,28 +8,32 @@ describe 'Profile > Preferences' do
visit profile_preferences_path
end
describe 'User changes their syntax highlighting theme', js: true do
describe 'User changes their syntax highlighting theme' do
it 'creates a flash message' do
choose 'user_color_scheme_id_5'
wait_for_requests
expect_preferences_saved_message
end
it 'updates their preference' do
choose 'user_color_scheme_id_5'
allowing_for_delay do
visit page.current_path
expect(page).to have_checked_field('user_color_scheme_id_5')
end
wait_for_requests
refresh
expect(page).to have_checked_field('user_color_scheme_id_5')
end
end
describe 'User changes their default dashboard', js: true do
describe 'User changes their default dashboard' do
it 'creates a flash message' do
select 'Starred Projects', from: 'user_dashboard'
click_button 'Save'
wait_for_requests
expect_preferences_saved_message
end
@ -37,12 +41,12 @@ describe 'Profile > Preferences' do
select 'Starred Projects', from: 'user_dashboard'
click_button 'Save'
allowing_for_delay do
find('#logo').click
wait_for_requests
expect(page).to have_content("You don't have starred projects yet")
expect(page.current_path).to eq starred_dashboard_projects_path
end
find('#logo').click
expect(page).to have_content("You don't have starred projects yet")
expect(page.current_path).to eq starred_dashboard_projects_path
find('.shortcuts-activity').trigger('click')