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 'spec/support/live_debugger.rb')
-rw-r--r--spec/support/live_debugger.rb13
1 files changed, 2 insertions, 11 deletions
diff --git a/spec/support/live_debugger.rb b/spec/support/live_debugger.rb
index 9c0570bcbf7..8359a81059b 100644
--- a/spec/support/live_debugger.rb
+++ b/spec/support/live_debugger.rb
@@ -5,20 +5,11 @@ module LiveDebugger
puts "\nCurrent example is paused for live debugging."
puts "Opening #{current_url} in your default browser..."
puts "The current user credentials are: #{@current_user.username} / 12345678" if @current_user
- puts "Press '^C' to continue the execution of the example"
+ puts "Press any key to resume the execution of the example!!"
`open #{current_url}`
- catch :unpause_test do
- trap('INT') { throw :unpause_test }
- loop do
- sleep(1)
- end
- end
-
- # If the command is 'DEFAULT', the Ruby's default handler will be invoked.
- # http://docs.rubydocs.org/rails-4-2-8-ruby-2-3-4/Ruby%202.3.4/classes/Kernel.html#method-i-trap
- trap('INT') { 'DEFAULT' }
+ loop until $stdin.getch
puts "Back to the example!"
end