mirror of
https://github.com/moparisthebest/mail
synced 2024-11-10 11:15:01 -05:00
36 lines
750 B
JavaScript
36 lines
750 B
JavaScript
'use strict';
|
|
|
|
require(['../../src/require-config'], function() {
|
|
|
|
require.config({
|
|
baseUrl: '../../src/lib'
|
|
});
|
|
|
|
// Start the main app logic.
|
|
require(['js/app-config', 'cordova'], function(app) {
|
|
// 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() {
|
|
require(
|
|
[
|
|
'test/unit/forge-test',
|
|
'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'
|
|
], function() {
|
|
//Tests loaded, run tests
|
|
QUnit.start();
|
|
}
|
|
);
|
|
} |