michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: "use strict"; michael@0: michael@0: // We need to initialize the profile or OS.File may not work. See bug 810543. michael@0: do_get_profile(); michael@0: michael@0: (function initMetricsTestingInfrastructure() { michael@0: let ns = {}; michael@0: Components.utils.import("resource://testing-common/services-common/logging.js", michael@0: ns); michael@0: michael@0: ns.initTestLogging(); michael@0: }).call(this); michael@0: michael@0: (function createAppInfo() { michael@0: let ns = {}; michael@0: Components.utils.import("resource://testing-common/services/healthreport/utils.jsm", ns); michael@0: ns.updateAppInfo(); michael@0: }).call(this);