(options)
| 55 | |
| 56 | |
| 57 | var extendDefault = function(options) { |
| 58 | return Object.extend({ |
| 59 | asynchronous: false, |
| 60 | method: 'get', |
| 61 | onException: function(r, e) { throw e; } |
| 62 | }, options); |
| 63 | }; |
| 64 | |
| 65 | suite("Ajax", function () { |
| 66 | this.timeout(10000); |