Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
function run_test() {
// Existing module.
"isModuleLoaded returned correct value for non-loaded module");
"isModuleLoaded returned true after loading that module");
"isModuleLoaded returned false after unloading that module");
// Non-existing module
"isModuleLoaded returned correct value for non-loaded module");
Assert.throws(
/NS_ERROR_FILE_NOT_FOUND/,
"Should have thrown while trying to load a non existing file"
);
}