travis-web/assets/javascripts/spec/support/helpers.coffee
2012-06-27 16:28:19 +02:00

12 lines
198 B
CoffeeScript

@after = (time, func) ->
waits(time)
jasmine.getEnv().currentSpec.runs(func)
@once = (condition, func) ->
waitsFor(condition)
jasmine.getEnv().currentSpec.runs(func)
@waitFor = waitsFor