It seems that the QUnit functions stop() and start() allow to wait for asynchronous tests, but during that waiting period the whole test suite hangs. Is there a way to run asynchronous tests in a non-blocking fashion using QUnit?
It seems that the QUnit functions stop() and start() allow to wait for asynchronous
Share
Looking at the docs for asyncTest and stop, there’s two reason’s I can see that it’s set up like that.
So these are a good thing, and you probably don’t actually want the async tests to not block as they run. You could probably do it by calling
startimmediately after the start of your async tests, but remember, JavaScript is actually single threaded (even though it sometimes gives the appearance of multi-threading), so this might cause unexpected results, as you can’t guarantee when your async test will continue running… it might not (probably won’t) be until after the other tests have finished and the results have been published.