xmpp.chapril.org-conversejs/tests/runner.js

72 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-04-05 11:01:31 +02:00
/*global config */
// Extra test dependencies
2018-01-04 12:41:03 +01:00
config.paths.jquery = "node_modules/jquery/dist/jquery";
config.paths.mock = "tests/mock";
2017-04-05 11:01:31 +02:00
config.paths['wait-until-promise'] = "node_modules/wait-until-promise/index";
config.paths['test-utils'] = "tests/utils";
config.paths.sinon = "node_modules/sinon/pkg/sinon";
2016-05-24 10:00:07 +02:00
config.paths.transcripts = "converse-logs/converse-logs";
config.paths["jasmine-core"] = "node_modules/jasmine-core/lib/jasmine-core/jasmine";
config.paths.jasmine = "node_modules/jasmine-core/lib/jasmine-core/boot";
2017-06-13 12:22:02 +02:00
config.paths["jasmine-console"] = "node_modules/jasmine-core/lib/console/console";
config.paths["console-reporter"] = "tests/console-reporter";
2017-02-14 07:47:00 +01:00
config.paths["jasmine-html"] = "node_modules/jasmine-core/lib/jasmine-core/jasmine-html";
2017-04-05 11:01:31 +02:00
config.shim.jasmine = {
exports: 'window.jasmineRequire'
};
config.shim['jasmine-html'] = {
deps: ['jasmine-core'],
2017-04-05 11:01:31 +02:00
exports: 'window.jasmineRequire'
};
2017-06-13 12:22:02 +02:00
config.shim['jasmine-console'] = {
deps: ['jasmine-core'],
2017-04-05 11:01:31 +02:00
exports: 'window.jasmineRequire'
};
config.shim.jasmine = {
deps: ['jasmine-core', 'jasmine-html', 'jasmine-console'],
2017-06-13 12:22:02 +02:00
exports: 'window.jasmine'
2016-11-30 13:18:58 +01:00
};
require.config(config);
2017-04-05 11:01:31 +02:00
var specs = [
"jasmine",
2018-01-09 14:52:27 +01:00
//"spec/transcripts",
"spec/spoilers",
"spec/profiling",
2016-11-30 13:18:58 +01:00
"spec/utils",
"spec/converse",
"spec/bookmarks",
"spec/roomslist",
2016-11-30 13:18:58 +01:00
"spec/headline",
"spec/disco",
"spec/protocol",
2017-02-20 20:47:08 +01:00
"spec/presence",
2017-04-05 11:01:31 +02:00
"spec/eventemitter",
"spec/ping",
"spec/xmppstatus",
2016-11-30 13:18:58 +01:00
"spec/mam",
"spec/otr",
"spec/controlbox",
"spec/roster",
2016-11-30 13:18:58 +01:00
"spec/chatbox",
"spec/chatroom",
"spec/minchats",
"spec/notification",
2017-04-05 11:01:31 +02:00
"spec/register"
];
require(['console-reporter', 'mock', 'sinon', 'wait-until-promise', 'pluggable'],
function(ConsoleReporter, mock, sinon, waitUntilPromise, pluggable) {
2017-04-05 11:01:31 +02:00
window.sinon = sinon;
2018-01-04 12:41:03 +01:00
window.waitUntilPromise = waitUntilPromise.default;
2017-04-05 11:01:31 +02:00
window.localStorage.clear();
window.sessionStorage.clear();
// Load the specs
require(specs, function (jasmine) {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.addReporter(new ConsoleReporter());
2017-06-13 12:22:02 +02:00
window.onload();
});
});