i use breakpoints inside tests see what's going wrong, 30 second timeout on tests prevents me around freely.
is there way disable ? following doesn't work :
@tag timeout: 0 test "something" assert == 42 end
maybe try using:
exunit.configure(timeout: 600_000) # or even: exunit.configure(timeout: :infinity)
Comments
Post a Comment