mirror of https://github.com/zulip/zulip.git
Add stub_out_jquery() for node tests.
This commit is contained in:
parent
6ce8f3da6d
commit
ebe76dd2c3
|
@ -1,11 +1,4 @@
|
||||||
set_global('$', function () {
|
global.stub_out_jquery();
|
||||||
return {
|
|
||||||
on: function () {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
$.fn = {};
|
|
||||||
|
|
||||||
add_dependencies({
|
add_dependencies({
|
||||||
util: 'js/util.js',
|
util: 'js/util.js',
|
||||||
|
|
|
@ -2,13 +2,7 @@
|
||||||
var path = require('path');
|
var path = require('path');
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
|
|
||||||
set_global('$', function () {
|
global.stub_out_jquery();
|
||||||
return {
|
|
||||||
on: function () {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
set_global('page_params', {realm_emoji: {
|
set_global('page_params', {realm_emoji: {
|
||||||
burrito: {display_url: '/static/third/gemoji/images/emoji/burrito.png',
|
burrito: {display_url: '/static/third/gemoji/images/emoji/burrito.png',
|
||||||
|
|
|
@ -10,12 +10,8 @@ add_dependencies({
|
||||||
|
|
||||||
|
|
||||||
set_global('document', null);
|
set_global('document', null);
|
||||||
set_global('$', function () {
|
|
||||||
return {
|
global.stub_out_jquery();
|
||||||
on: function () {},
|
|
||||||
trigger: function () {}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
set_global('feature_flags', {});
|
set_global('feature_flags', {});
|
||||||
set_global('Filter', function () {});
|
set_global('Filter', function () {});
|
||||||
|
|
|
@ -2,13 +2,7 @@ add_dependencies({
|
||||||
util: 'js/util.js'
|
util: 'js/util.js'
|
||||||
});
|
});
|
||||||
|
|
||||||
set_global('$', function () {
|
global.stub_out_jquery();
|
||||||
return {
|
|
||||||
on: function () {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
var people = require("js/people.js");
|
var people = require("js/people.js");
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
// TODO: de-dup with activity.js
|
// TODO: de-dup with activity.js
|
||||||
set_global('$', function () {
|
global.stub_out_jquery();
|
||||||
return {
|
|
||||||
on: function () {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
$.fn = {};
|
|
||||||
|
|
||||||
set_global('document', {
|
set_global('document', {
|
||||||
hasFocus: function () {
|
hasFocus: function () {
|
||||||
|
|
|
@ -11,13 +11,8 @@ set_global('document', {});
|
||||||
set_global('window', {
|
set_global('window', {
|
||||||
addEventListener: noop
|
addEventListener: noop
|
||||||
});
|
});
|
||||||
set_global('$', function () {
|
|
||||||
return {
|
global.stub_out_jquery();
|
||||||
hide: noop,
|
|
||||||
trigger: noop
|
|
||||||
};
|
|
||||||
});
|
|
||||||
global.$.now = noop;
|
|
||||||
|
|
||||||
// Prevent the get_events loop and watchdog from running
|
// Prevent the get_events loop and watchdog from running
|
||||||
patch_builtin('setTimeout', noop);
|
patch_builtin('setTimeout', noop);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
set_global('$', function (f) {});
|
global.stub_out_jquery();
|
||||||
|
|
||||||
var stream_color = require('js/stream_color.js');
|
var stream_color = require('js/stream_color.js');
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
set_global('$', function () {});
|
global.stub_out_jquery();
|
||||||
|
|
||||||
add_dependencies({
|
add_dependencies({
|
||||||
Handlebars: 'handlebars',
|
Handlebars: 'handlebars',
|
||||||
|
|
|
@ -17,6 +17,7 @@ var namespace = require('./namespace.js');
|
||||||
global.set_global = namespace.set_global;
|
global.set_global = namespace.set_global;
|
||||||
global.patch_builtin = namespace.patch_builtin;
|
global.patch_builtin = namespace.patch_builtin;
|
||||||
global.add_dependencies = namespace.add_dependencies;
|
global.add_dependencies = namespace.add_dependencies;
|
||||||
|
global.stub_out_jquery = namespace.stub_out_jquery;
|
||||||
|
|
||||||
// Set up helpers to render templates.
|
// Set up helpers to render templates.
|
||||||
var render = require('./render.js');
|
var render = require('./render.js');
|
||||||
|
|
|
@ -39,6 +39,18 @@ exports.restore = function () {
|
||||||
old_builtins = {};
|
old_builtins = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
exports.stub_out_jquery = function () {
|
||||||
|
set_global('$', function () {
|
||||||
|
return {
|
||||||
|
on: function () {},
|
||||||
|
trigger: function () {},
|
||||||
|
hide: function () {}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
$.fn = {};
|
||||||
|
$.now = function () {};
|
||||||
|
};
|
||||||
|
|
||||||
return exports;
|
return exports;
|
||||||
}());
|
}());
|
||||||
module.exports = namespace;
|
module.exports = namespace;
|
||||||
|
|
Loading…
Reference in New Issue