waitsForPromise can wait for calls to fail

This commit is contained in:
Corey Johnson
2012-07-10 15:05:29 -07:00
parent 84e6c04af2
commit 5b2781aec2

View File

@@ -90,7 +90,8 @@ window.mousemoveEvent = (properties={}) ->
window.waitsForPromise = (fn) ->
window.waitsFor (moveOn) ->
fn().done(moveOn)
promise = fn()
promise.then promise.done(moveOn), promise.fail(moveOn)
window.resetTimeouts = ->
window.now = 0