2013-12-30 20:27:57 +01:00
|
|
|
// Extra test dependencies
|
|
|
|
config.paths.mock = "tests/mock";
|
2014-08-08 22:06:01 +02:00
|
|
|
config.paths.test_utils = "tests/utils";
|
2016-03-28 12:49:52 +02:00
|
|
|
config.paths.sinon = "components/sinon/lib/sinon";
|
2013-12-30 20:27:57 +01:00
|
|
|
config.paths.jasmine = "components/jasmine/lib/jasmine-core/jasmine";
|
2016-05-24 10:00:07 +02:00
|
|
|
config.paths.transcripts = "converse-logs/converse-logs";
|
2013-12-30 20:27:57 +01:00
|
|
|
config.paths["jasmine-html"] = "components/jasmine/lib/jasmine-core/jasmine-html";
|
2014-04-18 17:39:45 +02:00
|
|
|
config.paths["console-runner"] = "node_modules/phantom-jasmine/lib/console-runner";
|
2013-12-30 20:27:57 +01:00
|
|
|
config.shim['jasmine-html'] = {
|
|
|
|
deps: ['jasmine'],
|
|
|
|
exports: 'jasmine'
|
|
|
|
};
|
|
|
|
require.config(config);
|
2013-07-28 21:20:36 +02:00
|
|
|
|
2013-10-03 12:35:54 +02:00
|
|
|
// 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");
|
|
|
|
}
|
2014-04-18 17:39:45 +02:00
|
|
|
var aArgs = Array.prototype.slice.call(arguments, 1),
|
|
|
|
fToBind = this,
|
2013-10-03 12:35:54 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-07-28 21:20:36 +02:00
|
|
|
require([
|
|
|
|
"jquery",
|
|
|
|
"converse",
|
|
|
|
"mock",
|
2016-03-28 12:49:52 +02:00
|
|
|
"jasmine-html",
|
|
|
|
"sinon"
|
|
|
|
], function($, converse, mock, jasmine, sinon) {
|
2013-08-05 09:25:29 +02:00
|
|
|
// Set up converse.js
|
2016-03-28 12:49:52 +02:00
|
|
|
window.sinon = sinon;
|
2014-02-12 11:19:12 +01:00
|
|
|
window.converse_api = converse;
|
2013-08-05 09:25:29 +02:00
|
|
|
window.localStorage.clear();
|
2014-06-30 19:55:26 +02:00
|
|
|
window.sessionStorage.clear();
|
2014-09-06 12:25:37 +02:00
|
|
|
|
2016-11-02 21:19:17 +01:00
|
|
|
require([
|
|
|
|
"console-runner",
|
|
|
|
//"spec/transcripts",
|
|
|
|
"spec/utils",
|
|
|
|
"spec/converse",
|
|
|
|
"spec/bookmarks",
|
|
|
|
"spec/headline",
|
|
|
|
"spec/disco",
|
|
|
|
"spec/protocol",
|
|
|
|
"spec/mam",
|
|
|
|
"spec/otr",
|
|
|
|
"spec/eventemitter",
|
|
|
|
"spec/controlbox",
|
|
|
|
"spec/chatbox",
|
|
|
|
"spec/chatroom",
|
|
|
|
"spec/minchats",
|
|
|
|
"spec/notification",
|
|
|
|
"spec/profiling",
|
|
|
|
"spec/ping",
|
|
|
|
"spec/register",
|
2016-11-03 11:01:09 +01:00
|
|
|
"spec/xmppstatus"
|
2016-11-02 21:19:17 +01:00
|
|
|
], function () {
|
|
|
|
// Jasmine stuff
|
|
|
|
var jasmineEnv = jasmine.getEnv();
|
|
|
|
var reporter;
|
|
|
|
if (/PhantomJS/.test(navigator.userAgent)) {
|
|
|
|
reporter = new jasmine.ConsoleReporter();
|
|
|
|
window.console_reporter = reporter;
|
|
|
|
jasmineEnv.addReporter(reporter);
|
|
|
|
jasmineEnv.updateInterval = 0;
|
|
|
|
} else {
|
|
|
|
reporter = new jasmine.HtmlReporter();
|
|
|
|
jasmineEnv.addReporter(reporter);
|
|
|
|
jasmineEnv.specFilter = function(spec) {
|
|
|
|
return reporter.specFilter(spec);
|
|
|
|
};
|
|
|
|
jasmineEnv.updateInterval = 0;
|
|
|
|
}
|
|
|
|
jasmineEnv.execute();
|
2013-08-05 09:25:29 +02:00
|
|
|
});
|
2013-07-27 10:51:55 +02:00
|
|
|
}
|
2013-08-05 09:25:29 +02:00
|
|
|
);
|