summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/snippet/show.rb
blob: f66fa2cbe51e33b86353f571330adce37d7904e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

          view 'app/views/projects/notes/_actions.html.haml' do
            element :edit_comment_button
          end
        end
      end
    end
  end
end