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/mobile/page/project/show.rb')
-rw-r--r--qa/qa/mobile/page/project/show.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/qa/qa/mobile/page/project/show.rb b/qa/qa/mobile/page/project/show.rb
deleted file mode 100644
index 8a0a222c852..00000000000
--- a/qa/qa/mobile/page/project/show.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- module Mobile
- module Page
- module Project
- module Show
- extend QA::Page::PageConcern
-
- def self.prepended(base)
- super
-
- base.class_eval do
- prepend QA::Mobile::Page::Main::Menu
-
- view 'app/assets/javascripts/nav/components/top_nav_new_dropdown.vue' do
- element :new_issue_mobile_button
- end
- end
- end
-
- def go_to_new_issue
- open_mobile_new_dropdown
-
- click_element(:new_issue_mobile_button)
- end
- end
- end
- end
- end
-end