mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
680 B
JavaScript
32 lines
680 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
const modules = [
|
|
"async.js",
|
|
"bagheeraclient.js",
|
|
"log4moz.js",
|
|
"rest.js",
|
|
"storageservice.js",
|
|
"stringbundle.js",
|
|
"tokenserverclient.js",
|
|
"utils.js",
|
|
];
|
|
|
|
const test_modules = [
|
|
"bagheeraserver.js",
|
|
"logging.js",
|
|
"storageserver.js",
|
|
];
|
|
|
|
function run_test() {
|
|
for each (let m in modules) {
|
|
let resource = "resource://services-common/" + m;
|
|
Components.utils.import(resource, {});
|
|
}
|
|
|
|
for each (let m in test_modules) {
|
|
let resource = "resource://testing-common/services-common/" + m;
|
|
Components.utils.import(resource, {});
|
|
}
|
|
}
|