Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* Any copyright is dedicated to the Public Domain.
2 * http://creativecommons.org/publicdomain/zero/1.0/ */
4 "use strict";
6 const modules = [
7 "healthreporter.jsm",
8 "profile.jsm",
9 "providers.jsm",
10 ];
12 function run_test() {
13 for (let m of modules) {
14 let resource = "resource://gre/modules/services/healthreport/" + m;
15 Components.utils.import(resource, {});
16 }
18 Components.utils.import("resource://gre/modules/HealthReport.jsm", {});
19 }