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/spec/support')
-rw-r--r--qa/spec/support/wait_for_requests_spec.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/qa/spec/support/wait_for_requests_spec.rb b/qa/spec/support/wait_for_requests_spec.rb
new file mode 100644
index 00000000000..79ee3eb5099
--- /dev/null
+++ b/qa/spec/support/wait_for_requests_spec.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+describe QA::Support::WaitForRequests do
+ describe '.wait_for_requests' do
+ before do
+ allow(subject).to receive(:finished_all_axios_requests?).and_return(true)
+ allow(subject).to receive(:finished_all_ajax_requests?).and_return(true)
+ allow(subject).to receive(:finished_loading?).and_return(true)
+ end
+
+ context 'when skip_finished_loading_check is defaulted to false' do
+ it 'calls finished_loading?' do
+ expect(subject).to receive(:finished_loading?).with(hash_including(wait: 1))
+
+ subject.wait_for_requests
+ end
+ end
+
+ context 'when skip_finished_loading_check is true' do
+ it 'does not call finished_loading?' do
+ expect(subject).not_to receive(:finished_loading?)
+
+ subject.wait_for_requests(skip_finished_loading_check: true)
+ end
+ end
+ end
+end