Skip to content

Instantly share code, notes, and snippets.

View Victor-Barcelo's full-sized avatar

Víctor Barceló Victor-Barcelo

View GitHub Profile
describe("Mocking Ext.Ajax.request with Jasmine", function () {
var responseText,
mockResponse = {
responseText: '{"success":true,"count":1,"data":[{name: "id", "type": "int", "maxLenght": "11", "isPrimaryKey": true}]}'
};
it("should mock the Ext.Ajax.request response manipulating the spy mostRecentCall.args", function () {
spyOn(Ext.Ajax, 'request');