Restore window.XMLHttpRequest when test finishes
This commit is contained in:
parent
b75688dcd9
commit
ea6fc57384
@ -1,17 +1,22 @@
|
|||||||
var torque = require('../lib/torque');
|
var torque = require('../lib/torque');
|
||||||
var providers = torque.providers;
|
var providers = torque.providers;
|
||||||
|
|
||||||
window.XMLHttpRequest = function () {
|
var json, url, _XMLHttpRequest;
|
||||||
return {
|
|
||||||
open: function () { },
|
|
||||||
send: function () { },
|
|
||||||
readyState: 4,
|
|
||||||
responseText: {}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var json, url;
|
|
||||||
QUnit.module('provider.json');
|
QUnit.module('provider.json');
|
||||||
|
QUnit.moduleStart(function() {
|
||||||
|
_XMLHttpRequest = window.XMLHttpRequest;
|
||||||
|
window.XMLHttpRequest = function () {
|
||||||
|
return {
|
||||||
|
open: function () { },
|
||||||
|
send: function () { },
|
||||||
|
readyState: 4,
|
||||||
|
responseText: {}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
QUnit.moduleDone(function() {
|
||||||
|
window.XMLHttpRequest = _XMLHttpRequest;
|
||||||
|
});
|
||||||
QUnit.testStart(function() {
|
QUnit.testStart(function() {
|
||||||
json = new providers.json({
|
json = new providers.json({
|
||||||
table: 'test',
|
table: 'test',
|
||||||
|
Loading…
Reference in New Issue
Block a user