Basic options, input & textarea
{ debounce: 1000 }
tests.one =
{ updateOn: 'default blur', debounce: {'default': 2000, 'blur': 500} }
tests.two =
{ updateOn: 'blur' }
tests.three =
Omitting some debounce options - { updateOn: 'keyup blur', debounce: {'keyup': 2000} }
tests.four =
default bebounce option only - { updateOn: 'keyup blur', debounce: {'default': 2000} }
tests.five =