diff --git a/test/unit/tests/ajax.test.js b/test/unit/tests/ajax.test.js index 55abb0867..de74074dd 100644 --- a/test/unit/tests/ajax.test.js +++ b/test/unit/tests/ajax.test.js @@ -541,19 +541,5 @@ suite("Ajax", function () { } })); }); - - test('no exception handler', function (done) { - new Ajax.Request('/inspect', extendDefault({ - onSuccess: function () { - try { - throw new Error("foo"); - assert(true); - } finally { - done(); - } - } - })); - }); - });