test-queue exits worker process by calling Kernel#exit!. Kernel#exit! won't call finalization handler of a process registered by Kernel.at_exit.
On the other hand, capybara's finalization process is registered by Kernel.at_exit, so it won't be called when a worker process ends.
How can I finalize Selenium driver?
Should I override TestQueue::Runnder::spawn_workers and change Kernel#exit! to Kernel#exit ?