summaryrefslogtreecommitdiff
path: root/spec/features/projects/show/user_manages_notifications_spec.rb
blob: 31b105229bef69206be6314b62d7c5634ba379ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'spec_helper'

describe 'Projects > Show > User manages notifications', :js do
  let(:project) { create(:project, :public, :repository) }

  before do
    sign_in(project.owner)
    visit project_path(project)
  end

  it 'changes the notification setting' do
    first('.notifications-btn').click
    click_link 'On mention'

    page.within '#notifications-button' do
      expect(page).to have_content 'On mention'
    end
  end
end