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
カルマと一緒に使っています。