summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/user_activates_emails_on_push_spec.rb
blob: cc55f7b20608f110094203103925e7f00739d7e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'spec_helper'

describe 'User activates Emails on push' do
  let(:project) { create(:project) }
  let(:user) { create(:user) }

  before do
    project.add_maintainer(user)
    sign_in(user)

    visit(project_settings_integrations_path(project))

    click_link('Emails on push')
  end

  it 'activates service' do
    check('Active')
    fill_in('Recipients', with: 'qa@company.name')
    click_button('Save')

    expect(page).to have_content('Emails on push activated.')
  end
end