beforeEach(function() {
            options = {
                success: callbackThatThrows
            };

            catchAjaxCallbackExceptions(null, null, options, noop);
        });
        beforeEach(function() {
            options = {
                success: noop,
                error: noop
            };

            catchAjaxCallbackExceptions(null, null, options, noop);
        });