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

show.rb « snippet « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3727f4c6579a60f842dfe6333152831b58877ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Snippet
        class Show < Page::Base
          include Page::Component::Snippet
          include Page::Component::BlobContent

          view 'app/views/projects/notes/_actions.html.haml' do
            element 'edit-comment-button'
          end
        end
      end
    end
  end
end