How long is a test able to run until an interrupt is thrown? I have a test which checks the response code of a URL, but the initial time the URL is called it takes about a minute to load. Before I get a response, chef-minitest-handler throws an interrupt.
@ekrupnik that's probably the time your http library takes to raise a time out error. This library doesn't manipulate any of that nor how minitest handles errors and interruptions.
How long is a test able to run until an
interrupt
is thrown? I have a test which checks the response code of a URL, but the initial time the URL is called it takes about a minute to load. Before I get a response, chef-minitest-handler throws aninterrupt
.