I like to use breakpoints inside my tests to see what's going wrong, but the 30 second timeout on the tests prevents me to look around freely.
Is there a way to disable it ? The following doesn't work :
@tag timeout: 0
test "something" do
assert something == 42
end
--trace
option:mix test --trace
. It will automatically set timeout to infinity. – Penmanship