gecko-dev/services/sync/tests/unit/test_load_modules.js

51 строка
1.0 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const modules = [
"addonutils.js",
"addonsreconciler.js",
"browserid_identity.js",
"constants.js",
"engines/addons.js",
"engines/bookmarks.js",
"engines/clients.js",
"engines/extension-storage.js",
"engines/forms.js",
"engines/history.js",
"engines/passwords.js",
"engines/prefs.js",
"engines/tabs.js",
"engines.js",
"keys.js",
"main.js",
"policies.js",
"record.js",
"resource.js",
"service.js",
"stages/declined.js",
"stages/enginesync.js",
"status.js",
"util.js",
];
const testingModules = [
"fakeservices.js",
"rotaryengine.js",
"utils.js",
"fxa_utils.js",
];
function run_test() {
for (let m of modules) {
let res = "resource://services-sync/" + m;
_("Attempting to load " + res);
ChromeUtils.import(res, {});
}
for (let m of testingModules) {
let res = "resource://testing-common/services/sync/" + m;
_("Attempting to load " + res);
ChromeUtils.import(res, {});
}
}