michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: const modules = [ michael@0: "utils.js", michael@0: "WeaveCrypto.js", michael@0: ]; michael@0: michael@0: function run_test() { michael@0: for each (let m in modules) { michael@0: let resource = "resource://services-crypto/" + m; michael@0: _("Attempting to import: " + resource); michael@0: Components.utils.import(resource, {}); michael@0: } michael@0: } michael@0: