2018-06-03 16:40:20 +02:00
|
|
|
var config = {
|
|
|
|
baseUrl: '../',
|
|
|
|
paths: {
|
2019-05-13 18:44:32 +02:00
|
|
|
'console-reporter': 'tests/console-reporter',
|
|
|
|
'es6-promise': 'node_modules/es6-promise/dist/es6-promise.auto',
|
|
|
|
'jasmine-console': 'node_modules/jasmine-core/lib/console/console',
|
|
|
|
'jasmine-core': 'node_modules/jasmine-core/lib/jasmine-core/jasmine',
|
|
|
|
'jasmine-html': 'node_modules/jasmine-core/lib/jasmine-core/jasmine-html',
|
|
|
|
'jasmine':'node_modules/jasmine-core/lib/jasmine-core/boot',
|
|
|
|
'mock': 'tests/mock',
|
|
|
|
'sinon': 'node_modules/sinon/pkg/sinon',
|
|
|
|
'test-utils': 'tests/utils',
|
|
|
|
'transcripts': 'converse-logs/converse-logs',
|
|
|
|
'wait-until-promise': 'node_modules/wait-until-promise/index'
|
2018-06-03 16:40:20 +02:00
|
|
|
},
|
|
|
|
shim: {
|
2019-05-13 18:44:32 +02:00
|
|
|
'jasmine-html': {
|
|
|
|
deps: ['jasmine-core'],
|
|
|
|
exports: 'window.jasmineRequire'
|
|
|
|
},
|
|
|
|
'jasmine-console': {
|
|
|
|
deps: ['jasmine-core'],
|
|
|
|
exports: 'window.jasmineRequire'
|
|
|
|
},
|
|
|
|
'jasmine': {
|
|
|
|
deps: ['jasmine-core', 'jasmine-html', 'jasmine-console'],
|
|
|
|
exports: 'window.jasmine'
|
|
|
|
},
|
2018-06-03 16:40:20 +02:00
|
|
|
}
|
|
|
|
};
|
2013-12-30 20:27:57 +01:00
|
|
|
require.config(config);
|
2013-07-28 21:20:36 +02:00
|
|
|
|
2017-04-05 11:01:31 +02:00
|
|
|
var specs = [
|
2017-06-19 11:08:57 +02:00
|
|
|
"jasmine",
|
2018-03-18 04:35:34 +01:00
|
|
|
//"spec/transcripts",
|
2018-02-02 19:33:19 +01:00
|
|
|
"spec/spoilers",
|
2017-12-20 13:17:58 +01:00
|
|
|
"spec/profiling",
|
2016-11-30 13:18:58 +01:00
|
|
|
"spec/utils",
|
|
|
|
"spec/converse",
|
|
|
|
"spec/bookmarks",
|
2017-05-16 11:56:40 +02:00
|
|
|
"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",
|
2018-06-06 11:07:59 +02:00
|
|
|
"spec/push",
|
2017-04-05 11:01:31 +02:00
|
|
|
"spec/xmppstatus",
|
2016-11-30 13:18:58 +01:00
|
|
|
"spec/mam",
|
2018-05-12 23:26:14 +02:00
|
|
|
"spec/omemo",
|
2016-11-30 13:18:58 +01:00
|
|
|
"spec/controlbox",
|
2017-12-22 14:38:23 +01:00
|
|
|
"spec/roster",
|
2016-11-30 13:18:58 +01:00
|
|
|
"spec/chatbox",
|
2018-05-10 22:14:37 +02:00
|
|
|
"spec/user-details-modal",
|
2018-04-29 15:40:24 +02:00
|
|
|
"spec/messages",
|
2019-01-25 11:53:07 +01:00
|
|
|
"spec/muc",
|
2018-09-04 11:39:27 +02:00
|
|
|
"spec/room_registration",
|
2018-08-14 12:50:47 +02:00
|
|
|
"spec/autocomplete",
|
2016-11-30 13:18:58 +01:00
|
|
|
"spec/minchats",
|
|
|
|
"spec/notification",
|
2018-05-17 18:25:12 +02:00
|
|
|
"spec/login",
|
2018-03-28 18:38:22 +02:00
|
|
|
"spec/register",
|
|
|
|
"spec/http-file-upload"
|
2017-04-05 11:01:31 +02:00
|
|
|
];
|
|
|
|
|
2019-05-13 18:44:32 +02:00
|
|
|
require(['console-reporter', 'mock', 'sinon', 'wait-until-promise'], (ConsoleReporter, mock, sinon, waitUntilPromise) => {
|
2018-07-20 14:07:33 +02:00
|
|
|
if (window.view_mode) {
|
|
|
|
mock.view_mode = window.view_mode;
|
2018-02-07 13:26:39 +01:00
|
|
|
}
|
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
|
|
|
// Load the specs
|
2019-05-13 18:44:32 +02:00
|
|
|
require(specs, jasmine => {
|
2019-04-22 14:39:17 +02:00
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 7000;
|
|
|
|
const jasmineEnv = jasmine.getEnv();
|
2017-06-19 11:08:57 +02:00
|
|
|
jasmineEnv.addReporter(new ConsoleReporter());
|
2017-06-13 12:22:02 +02:00
|
|
|
window.onload();
|
|
|
|
});
|
|
|
|
});
|