summaryrefslogtreecommitdiff
path: root/qa/qa/page/component/commit_modal.rb
blob: 7192e8bafb53286c23aebf95965acaf58e7bd8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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