1
0
mirror of https://github.com/moparisthebest/mail synced 2025-03-04 02:29:43 -05:00
mail/test/unit/main.js
2013-06-10 17:57:33 +02:00

30 lines
614 B
JavaScript

'use strict';
require(['../../src/require-config'], function() {
require.config({
baseUrl: '../../src/lib'
});
// Start the main app logic.
require(['js/app-config'], function() {
// clear session storage of failed tests, so async order is correct after fail & refresh
window.sessionStorage.clear();
window.Worker = undefined;
app.config.workerPath = '../../src/js';
app.config.cloudUrl = 'http://localhost:8888';
startTests();
});
});
function startTests() {
require([
'test/unit/forge-test',
'test/unit/aes-test'
], function() {
QUnit.start(); //Tests loaded, run tests
});
}