这是我的测试代码。
test("user login", function(){
visit("/sessions/new").then(function() {
fillIn('input[name=email]', 'test@email.com');
fillIn('input[type=password]', '1234');
click('button[type=submit]').then(function() {
equal(find('.dropdown-anchor', '#ember-testing').text(), 'test@email.com', "Menu should contain email 'test@email.com'");
});
});
});
单击“提交”会触发会话的HTTP请求。成功完成后,它会更新应用程序菜单以获取登录的用户电子邮件地址。
在检查页面是否已更新之前,如何让QUnit等待会话HTTP请求完成?
更新:已解决
事实证明我有一个自定义方法来创建位于ember数据约定之外的新会话。在ajax请求中添加Ember.run.begin();
和Ember.run.end();
后,测试开始起作用。有关详情,请参阅此处:http://emberjs.com/api/classes/Ember.run.html
答案 0 :(得分:2)
每个ember-testing helper都会返回一个promise,该promise将在所有生成的异步行为完成时完成。因此,要等待会话http请求完成,请尝试以下操作:
test("user login", function(){
visit("/sessions/new").then(function() {
return fillIn('input[name=email]', 'test@email.com');
}).then(function() {
return fillIn('input[type=password]', '1234');
}).then(function() {
return click('button[type=submit]');
}).then(function() {
equal(find('.dropdown-anchor', '#ember-testing').text(), 'test@email.com', "Menu should contain email 'test@email.com'");
});
});