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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/project/snippet/show.rb')
-rw-r--r--qa/qa/page/project/snippet/show.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/qa/qa/page/project/snippet/show.rb b/qa/qa/page/project/snippet/show.rb
new file mode 100644
index 00000000000..f66fa2cbe51
--- /dev/null
+++ b/qa/qa/page/project/snippet/show.rb
@@ -0,0 +1,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