travis-web/assets/scripts/spec/support/helpers.coffee
Piotr Sarnacki 4153c990be Fix specs
2012-10-15 23:20:33 +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