Is it possible to test for no exception thrown?
JsTestDriver provides the ability to test if a function has not thrown an error e.g.
function myfunc() { return; }
assertNoException(function () {
myfunc();
});
The test should fail as no exception was thrown.
How would I achieve this with qunit?
Cheers