3

嗨,我正在使用 fetch 测试一个集合,当我调用它时,只有在调用 server.response 后,假服务器才得到响应,我得到了想要的结果。

这是为什么 ?

我的代码

  beforeEach( function() {
    server = sinon.fakeServer.create();
    server.autoRespond = true;
    colhedoraList = new ColhedoraList();
  });

.
.
.
    var spy       = sinon.spy(colhedoraList, 'parse');

    server.respondWith("GET", "getColhedoraInfo",
      [200, {"Content-Type": "application/json"},
      '[{"id":"1","talhaoAtual":1,"posicionamentos":[{"lat":-23.9317401,"lng":-50.2210379,"elevadorLigado":true,"horario":"2012-09-21T11:27:58Z"},{"lat":-23.931544,"lng":-50.2161884,"elevadorLigado":true,"horario":"2012-09-21T11:28:02Z"}]}]']);

    colhedoraList.fetch({add: true});
    server.respond();
    expect(spy).toHaveBeenCalled();
    expect(spygmaps).toHaveBeenCalledTwice();
    expect(colhedoraList.get(1).get('talhaoAtual')).toEqual(1);    <<< ALL EXPECTS FAIL, If I don't call respond().
4

1 回答 1

8

如果您sinon.useFakeTimers在规范中的任何地方使用模拟计时器 (),这可能会阻止自动回复器工作。该addRequest方法创建一个超时,在该超时内实际响应请求。默认等待时间为 10 毫秒。

于 2012-10-22T07:30:58.873 回答