2012-06-28 60 views

回答

2

您還可以使用Ember公司本身的測試功能,如什麼是基本不被禁止在this post

描述通過設置Ember runloop:Ember.testing = true 這樣您就不必檢查異步代碼是否完成。你可以簡單的在自己的runloop把它包:

// Creating an application normally happens async, 
// which is why we have to wrap it in Ember.run 
Ember.run(function() { 
    App = Ember.Application.create(); 
});