mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
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;
|
|
});
|
|
});
|