FIX: Use modules for Ember.run.debounce hack in testing

This commit is contained in:
Robin Ward
2019-10-29 16:25:37 -04:00
parent e5525d03b8
commit 249dff85c7
2 changed files with 2 additions and 9 deletions

View File

@ -17,7 +17,7 @@ var define, requirejs;
"@ember/runloop": {
bind: Ember.run.bind,
cancel: Ember.run.cancel,
debounce: Ember.run.debounce,
debounce: Ember.testing ? Ember.run : Ember.run.debounce,
later: Ember.run.later,
next: Ember.run.next,
once: Ember.run.once,