我想使用visit
帮助程序来集成测试以下路线:
App.IndexRoute = Em.Route.extend
model: ->
App.Movies.find "The Godfather"
但是我的测试没有通过,我得到:
assertion failed: You have turned on testing mode, which disabled the run-loop's autorun.
You will need to wrap any code with asynchronous side-effects in an Ember.run
不幸的是,像这样包装它并没有帮助:
App.IndexRoute = Em.Route.extend
model: ->
Em.run =>
App.Movies.find "The Godfather"
(我也包了@App = Em.Application.create()
)
将代码包装到运行循环中的正确方法是什么?
我正在使用rc.5
Karma。