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

project_integrations_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: 708a5bca8c1a07ef2a8693a7a52f4715ac922e2e (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 'Project integrations', :js do
  include_context 'project integration activation'

  it_behaves_like 'integration settings form' do
    let(:integrations) { project.find_or_initialize_integrations }

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