summaryrefslogtreecommitdiff
path: root/qa/qa/page/component/commit_modal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/component/commit_modal.rb')
-rw-r--r--qa/qa/page/component/commit_modal.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/qa/qa/page/component/commit_modal.rb b/qa/qa/page/component/commit_modal.rb
new file mode 100644
index 00000000000..7192e8bafb5
--- /dev/null
+++ b/qa/qa/page/component/commit_modal.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Component
+ class CommitModal < Page::Base
+ view 'app/assets/javascripts/projects/commit/components/form_modal.vue' do
+ element :submit_commit_button, required: true
+ end
+ end
+ end
+ end
+end