Created
May 9, 2014 01:56
-
-
Save abreckner/110e28897d42126a3bb9 to your computer and use it in GitHub Desktop.
Jasmine 2 plug in to re-enable waitsFor and runs functionality
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is the equivalent of the old waitsFor/runs syntax | |
// which was removed from Jasmine 2 | |
waitsForAndRuns = function(escapeFunction, runFunction, escapeTime) { | |
// check the escapeFunction every millisecond so as soon as it is met we can escape the function | |
var interval = setInterval(function() { | |
if (escapeFunction()) { | |
clearMe(); | |
runFunction(); | |
} | |
}, 1); | |
// in case we never reach the escapeFunction, we will time out | |
// at the escapeTime | |
var timeOut = setTimeout(function() { | |
clearMe(); | |
runFunction(); | |
}, escapeTime); | |
// clear the interval and the timeout | |
function clearMe(){ | |
clearInterval(interval); | |
clearTimeout(timeOut); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@SimenB, @RoyTinker
i'm getting this error 'expect' was used when there was no current spec, this could be because an asynchronous test timed out