// Extra test dependencies config.paths.mock = "tests/mock"; config.paths.test_utils = "tests/utils"; config.paths.jasmine = "components/jasmine/lib/jasmine-core/jasmine"; config.paths["jasmine-html"] = "components/jasmine/lib/jasmine-core/jasmine-html"; config.paths["console-runner"] = "node_modules/phantom-jasmine/lib/console-runner"; config.shim['jasmine-html'] = { deps: ['jasmine'], exports: 'jasmine' }; require.config(config); // Polyfill 'bind' which is not available in phantomjs < 2.0 if (!Function.prototype.bind) { Function.prototype.bind = function (oThis) { if (typeof this !== "function") { // closest thing possible to the ECMAScript 5 internal IsCallable function throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); } var aArgs = Array.prototype.slice.call(arguments, 1), fToBind = this, fNOP = function () {}, fBound = function () { return fToBind.apply(this instanceof fNOP && oThis ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments))); }; fNOP.prototype = this.prototype; fBound.prototype = new fNOP(); return fBound; }; } require([ "jquery", "converse", "mock", "jasmine-html" ], function($, converse, mock, jasmine) { // Set up converse.js window.converse_api = converse; window.localStorage.clear(); window.sessionStorage.clear(); converse.initialize({ i18n: window.locales.en, auto_subscribe: false, animate: false, connection: mock.mock_connection, no_trimming: true, debug: false }, function (converse) { window.converse = converse; window.crypto = { getRandomValues: function (buf) { var i; for (i=0, len=buf.length; i