Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_activates_jetbrains_teamcity_ci_spec.rb « integrations « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6f2e462b8c93a10bb36f146520c0baf3826cfe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User activates JetBrains TeamCity CI' do
  include_context 'project integration activation'

  before do
    stub_request(:post, /.*teamcity.example.com.*/)
  end

  it 'activates integration', :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