You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is currently a sleep workaround in place inside the test-fixtures.clj
Without this pause, its possible that the queue get deleted by the fixture while a listener thread is still trying to read it which will cause an exception. That doesn't influence the test result, but still shouldn't happen. In a real-world situation it is highly unlikely that someone suddenly kills the used queue and if that happens the exception is correct.
For the test cases it would still be nice to have a cleaner way here.
Maybe we can make use of wait-for here, too? See #44
The text was updated successfully, but these errors were encountered:
There is currently a sleep workaround in place inside the test-fixtures.clj
Without this pause, its possible that the queue get deleted by the fixture while a listener thread is still trying to read it which will cause an exception. That doesn't influence the test result, but still shouldn't happen. In a real-world situation it is highly unlikely that someone suddenly kills the used queue and if that happens the exception is correct.
For the test cases it would still be nice to have a cleaner way here.
Maybe we can make use of wait-for here, too? See #44
The text was updated successfully, but these errors were encountered: