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

group_integrations_spec.rb « integrations « groups « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d65fa5964bb883f5e1fc5b68bd23b5e10ced4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Group integrations', :js do
  include_context 'group integration activation'

  it_behaves_like 'integration settings form' do
    let(:integrations) { Integration.find_or_initialize_all_non_project_specific(Integration.for_group(group)) }

    def navigate_to_integration(integration)
      visit_group_integration(integration.title)
    end
  end
end