Mypal68/testing/xpcshell/example/unit/test_import_module.js
2022-04-16 07:41:55 +03:00

20 lines
689 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* import-globals-from import_module.jsm */
/**
* Ensures that tests can import a module in the same folder through:
* Components.utils.import("resource://test/module.jsm");
*/
function run_test() {
Assert.ok(typeof this.MODULE_IMPORTED == "undefined");
Assert.ok(typeof this.MODULE_URI == "undefined");
let uri = "resource://test/import_module.jsm";
let exports = ChromeUtils.import(uri);
Assert.ok(exports.MODULE_URI == uri);
Assert.ok(exports.MODULE_IMPORTED);
}