mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-20 15:55:37 -04:00
20 lines
689 B
JavaScript
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);
|
|
}
|