qUnit Teardown method
javascript, jquery, qunit, unit-testing
Solution
You can pass it in the module function like this:
module( "name", {teardown: function() {...}});
Problem
Is it possible to have teardown methods that run after every test in qUnit? If not, are there any plugins around that will do this?