1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/test/unit/main.js

35 lines
715 B
JavaScript
Raw Normal View History

2013-06-10 11:57:33 -04:00
'use strict';
require(['../../src/require-config'], function() {
require.config({
baseUrl: '../../src/lib'
});
// Start the main app logic.
2013-06-10 21:14:57 -04:00
require(['js/app-config', 'cordova'], function(app) {
2013-06-10 11:57:33 -04:00
// clear session storage of failed tests, so async order is correct after fail & refresh
window.sessionStorage.clear();
2013-10-29 14:24:22 -04:00
window.Worker = undefined;
2013-06-10 11:57:33 -04:00
app.config.workerPath = '../../src/js';
startTests();
});
});
function startTests() {
require(
[
'test/unit/forge-test',
'test/unit/aes-test',
'test/unit/rsa-test',
'test/unit/keychain-dao-test',
'test/unit/crypto-test',
'test/unit/devicestorage-dao-test'
], function() {
//Tests loaded, run tests
QUnit.start();
}
);
2013-06-10 11:57:33 -04:00
}