Your environment
ruby -v: ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x86_64-darwin20]rdbg -v: rdbg 1.3.4
Describe the bug
When I do debugger or binding.b in my tests it blocks the background requests
To Reproduce
For instance:
require"rails_helper"RSpec.describe"Approvals"dolet!(:user){create(:user)}let!(:approved_user){create(:user)}before{create(:event,:approved,user: approved_user)}it"can approve events"dosystem_login_as(user)binding.bendendExpected behavior
Requests are not blocked, like what binding.pry does
Additional context
I'm using the preload, maybe that's related
Your environment
ruby -v: ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x86_64-darwin20]rdbg -v: rdbg 1.3.4Describe the bug
When I do
debuggerorbinding.bin my tests it blocks the background requestsTo Reproduce
For instance:
Expected behavior
Requests are not blocked, like what
binding.prydoesAdditional context
I'm using the preload, maybe that's related