gitlab-org--gitlab-foss/spec/features/projects/services/user_activates_flowdock_spe...

23 lines
479 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
describe 'User activates Flowdock' do
include_context 'project service activation' do
let(:project) { create(:project, :repository) }
end
before do
stub_request(:post, /.*api.flowdock.com.*/)
end
it 'activates service', :js do
visit_project_integration('Flowdock')
fill_in('Token', with: 'verySecret')
click_test_integration
expect(page).to have_content('Flowdock activated.')
end
end