1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-21 05:11:50 -05:00

37 lines
856 B
JavaScript
Raw Normal View History

2013-06-11 00:17:08 +02:00
'use strict';
require(['src/require-config'], function() {
2013-06-11 00:17:08 +02:00
require.config({
2014-06-11 10:42:34 +03:00
baseUrl: 'src/lib',
paths: {
'browsercrow': '../../../lib/browsercrow',
'browsercrow-envelope': '../../../lib/browsercrow-envelope',
'browsercrow-bodystructure': '../../../lib/browsercrow-bodystructure',
'browsercrow-mimeparser': '../../../lib/browsercrow-mimeparser',
'browsersmtp': '../../../lib/browsersmtp'
}
2013-06-11 00:17:08 +02:00
});
// Start the main app logic.
require(['js/app-config'], function(app) {
window.Worker = undefined; // disable web workers since mocha doesn't support them
2013-06-11 00:17:08 +02:00
app.config.workerPath = '../../src/js';
//app.config.cloudUrl = 'http://localhost:8888';
2013-06-11 00:17:08 +02:00
startTests();
});
});
function startTests() {
mocha.setup('bdd');
require(
[
'../../email-dao-test'
], function() {
//Tests loaded, run tests
mocha.run();
}
);
2013-06-11 00:17:08 +02:00
}