I\'m trying to pass this spec :
scenario \"Edit a service\", js: true do
service = create_service_for(provider, title: \"First service\")
fill_edit_service_f
You have the deadlock when there are two threads which run the tests. For example open a tab in your terminal and run tests with the rspec
command. Immediately open second tab in the terminal and run the tests there too with the same command.
So, I guess you just have run all tests in one tab and trying to run particular test with the rspec spec/acceptances/provider_services_spec.rb:31
command in other tab.