2

这是我的测试代码。

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 数据约定之外的新会话。一旦我添加Ember.run.begin();Ember.run.end();在 ajax 请求中,测试就开始工作了。有关详细信息,请参见此处:http: //emberjs.com/api/classes/Ember.run.html

4

1 回答 1

2

每个 ember-testing 助手都会返回一个 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'");
  });
});
于 2013-09-03T00:25:56.000 回答