elixir - No timeout in tests -


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) 

docu , source code


Comments