diff options
author | Ramya Authappan <rauthappan@gitlab.com> | 2019-02-11 09:04:59 +0000 |
---|---|---|
committer | Ramya Authappan <rauthappan@gitlab.com> | 2019-02-11 09:04:59 +0000 |
commit | 1a1f28fe2ab0de454d0c3406a68d0c6fa3d39f60 (patch) | |
tree | 03c7d01e071ce0843987ad6f1eb96234fa20074a /qa/qa.rb | |
parent | 25af9032750c215860829fecb196da1e1c5ace6b (diff) | |
parent | 97265d39e72cbb32468a3f1d671820528af02a8b (diff) | |
download | gitlab-ce-1a1f28fe2ab0de454d0c3406a68d0c6fa3d39f60.tar.gz |
Merge branch 'qa-improve-wait-for-push' into 'master'
[CE] Improve `wait_for_push`
Closes #53308
See merge request gitlab-org/gitlab-ce!24085
Diffstat (limited to 'qa/qa.rb')
-rw-r--r-- | qa/qa.rb | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -62,6 +62,11 @@ module QA autoload :Fork, 'qa/resource/fork' autoload :SSHKey, 'qa/resource/ssh_key' + module Events + autoload :Base, 'qa/resource/events/base' + autoload :Project, 'qa/resource/events/project' + end + module Repository autoload :Push, 'qa/resource/repository/push' autoload :ProjectPush, 'qa/resource/repository/project_push' @@ -361,6 +366,7 @@ module QA autoload :Logging, 'qa/support/page/logging' end autoload :Api, 'qa/support/api' + autoload :Waiter, 'qa/support/waiter' end end |