1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-21 13:21:49 -05:00
mail/test/unit/main.js

34 lines
761 B
JavaScript
Raw Normal View History

2013-06-10 17:57:33 +02:00
'use strict';
require(['../../src/require-config'], function() {
require.config({
baseUrl: '../../src/lib'
});
// Start the main app logic.
2013-06-11 03:14:57 +02:00
require(['js/app-config', 'cordova'], function(app) {
2013-06-10 17:57:33 +02:00
// 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';
startTests();
});
});
function startTests() {
2013-06-11 17:12:27 +02:00
require(['test/unit/forge-test',
2013-08-05 16:45:02 +02:00
'test/unit/aes-test',
'test/unit/rsa-test',
'test/unit/lawnchair-dao-test',
'test/unit/keychain-dao-test',
'test/unit/crypto-test',
'test/unit/devicestorage-dao-test',
'test/unit/email-dao-test'
2013-06-10 17:57:33 +02:00
], function() {
2013-06-10 22:45:21 +02:00
//Tests loaded, run tests
QUnit.start();
2013-06-10 17:57:33 +02:00
});
}