debian-mirror-gitlab/spec/features/profiles/user_visits_notifications_tab_spec.rb
2017-09-10 17:25:29 +05:30

22 lines
502 B
Ruby

require 'spec_helper'
feature 'User visits the notifications tab', js: true do
let(:project) { create(:project) }
let(:user) { create(:user) }
before do
project.team << [user, :master]
sign_in(user)
visit(profile_notifications_path)
end
it 'changes the project notifications setting' do
expect(page).to have_content('Notifications')
first('#notifications-button').trigger('click')
click_link('On mention')
expect(page).to have_content('On mention')
end
end