debian-mirror-gitlab/spec/features/projects/services/user_activates_jetbrains_teamcity_ci_spec.rb
2021-04-29 21:17:54 +05:30

25 lines
725 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'User activates JetBrains TeamCity CI' do
include_context 'project service activation'
before do
stub_request(:post, /.*teamcity.example.com.*/)
end
it 'activates service', :js do
visit_project_integration('JetBrains TeamCity')
check('Push')
check('Merge Request')
fill_in('TeamCity server URL', with: 'http://teamcity.example.com')
fill_in('Build type', with: 'GitlabTest_Build')
fill_in('Username', with: 'user')
fill_in('Password', with: 'verySecret')
click_test_then_save_integration(expect_test_to_fail: false)
expect(page).to have_content('JetBrains TeamCity settings saved and active.')
end
end