summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/user_activates_emails_on_push_spec.rb
blob: 40947027146629ab4ea2f90b37f661de78974928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User activates Emails on push' do
  include_context 'project service activation'

  it 'activates service', :js do
    visit_project_integration('Emails on push')
    fill_in('Recipients', with: 'qa@company.name')

    click_test_integration

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