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
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-04-15 16:04:40 +0300
committerSean McGivern <sean@gitlab.com>2019-04-16 16:33:06 +0300
commitc6456830b5f9a147807b9de32c437eb6dda4c53b (patch)
tree7bb4f9f9c41f3055e9a0bcdb8732dc7fb327b146 /qa/qa.rb
parentca8c35285eedb0ae6e9a52fe377ec0b3ae9ada1a (diff)
Add QA tests for the performance bar
These are very high-level. Currently, they test: 1. That the performance bar appears. 2. That it has detailed metrics for Postgres and Gitaly. 3. That AJAX requests are included in the request selector.
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 672f4aa928a..f580691f952 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -275,6 +275,7 @@ module QA
module Layout
autoload :Banner, 'qa/page/layout/banner'
+ autoload :PerformanceBar, 'qa/page/layout/performance_bar'
end
module Label
@@ -293,10 +294,12 @@ module QA
module Settings
autoload :Repository, 'qa/page/admin/settings/repository'
autoload :General, 'qa/page/admin/settings/general'
+ autoload :MetricsAndProfiling, 'qa/page/admin/settings/metrics_and_profiling'
module Component
autoload :RepositoryStorage, 'qa/page/admin/settings/component/repository_storage'
autoload :AccountAndLimit, 'qa/page/admin/settings/component/account_and_limit'
+ autoload :PerformanceBar, 'qa/page/admin/settings/component/performance_bar'
end
end
end