Blame view

framework/thirdparty/jasmine-ajax/spec/javascripts/helpers/spec-helper.js 333 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  jQuery.noConflict();
  
  beforeEach(function() {
    clearAjaxRequests();
  
    spyOn(Ajax, "getTransport").andCallFake(function() {
      return new FakeXMLHttpRequest();
    });
  
    spyOn(jQuery.ajaxSettings, 'xhr').andCallFake(function() {
      var newXhr = new FakeXMLHttpRequest();
      ajaxRequests.push(newXhr);
      return newXhr;
    });
  });