michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: const modules = [ michael@0: "Identity.jsm", michael@0: "IdentityProvider.jsm", michael@0: "IdentityStore.jsm", michael@0: "jwcrypto.jsm", michael@0: "RelyingParty.jsm", michael@0: "Sandbox.jsm", michael@0: ]; michael@0: michael@0: function run_test() { michael@0: for each (let m in modules) { michael@0: let resource = "resource://gre/modules/identity/" + m; michael@0: Components.utils.import(resource, {}); michael@0: do_print("loaded " + resource); michael@0: } michael@0: }