mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
590 B
JavaScript
29 lines
590 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
const modules = [
|
|
"healthreporter.jsm",
|
|
"policy.jsm",
|
|
"profile.jsm",
|
|
"providers.jsm",
|
|
];
|
|
|
|
const test_modules = [
|
|
"mocks.jsm",
|
|
];
|
|
|
|
function run_test() {
|
|
for (let m of modules) {
|
|
let resource = "resource://gre/modules/services/healthreport/" + m;
|
|
Components.utils.import(resource, {});
|
|
}
|
|
|
|
for (let m of test_modules) {
|
|
let resource = "resource://testing-common/services/healthreport/" + m;
|
|
Components.utils.import(resource, {});
|
|
}
|
|
}
|
|
|