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

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

module QA
  module Page
    module Component
      module WebIDE
        module Modal
          class CreateNewFile < Page::Base
            view 'app/assets/javascripts/ide/components/new_dropdown/modal.vue' do
              element :file_name_field, required: true
              element :new_file_modal, required: true
              element :template_list_content
            end
          end
        end
      end
    end
  end
end